aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorgrunfink <grunfink@noreply.codeberg.org>2025-09-06 09:39:23 +0200
committergrunfink <grunfink@noreply.codeberg.org>2025-09-06 09:39:23 +0200
commit9149959f10249859ae2fd1edfbbef12d938f6a6c (patch)
treea2466245854438bff8c8d50d2db4b51d2cfc2cfe /Dockerfile
parent6dae96de25ed8d91767aa4cb4e634b71a4b9ae9a (diff)
parentffaa7aeb808c1db3594b5ad1989e20d2154d547c (diff)
Merge pull request 'Docker: add timezone, new examples for building and complete Swarm mode stack with Traefik' (#465) from daltux/snac2:docker_tzdata into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/465
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index e909cfa..3b5aea2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -9,8 +9,9 @@ RUN apk -U --no-progress --no-cache add curl-dev build-base && \
cp examples/docker-entrypoint.sh /build/out/usr/local/bin/entrypoint.sh
FROM alpine:${ALPINE_VERSION}
-RUN apk -U --no-progress --no-cache add libcurl
+RUN apk -U --no-progress --no-cache add libcurl tzdata
COPY --from=builder /build/out /
EXPOSE 5050
VOLUME [ "/data" ]
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
+