Skip to content

Commit

Permalink
Merge pull request #76 from shizunge/dependabot/docker/alpine-3.21.0
Browse files Browse the repository at this point in the history
Bump alpine from 3.20.3 to 3.21.0
  • Loading branch information
shizunge authored Dec 11, 2024
2 parents 045d1a5 + 256fa98 commit f86419b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.20.3
FROM alpine:3.21.0

LABEL org.opencontainers.image.title=gantry
LABEL org.opencontainers.image.description="Updating docker swarm services"
Expand All @@ -9,7 +9,11 @@ RUN mkdir -p /gantry

WORKDIR /gantry

RUN apk add --update --no-cache curl tzdata docker-cli docker-cli-buildx
# * Add curl to report docker hub rate and for notification.
# * Add tzdata to log timezone correctly.
# * Add coreutils for command `timeout`.
# The timeout command from coreutils and busybox exhibit different behaviors. Notably, busybox timeout may not reliably report the timeout status of a `docker service update` in some cases, leading to potential inaccuracies.
RUN apk add --update --no-cache curl tzdata coreutils docker-cli docker-cli-buildx

COPY src/* /gantry

Expand Down

0 comments on commit f86419b

Please sign in to comment.