diff options
| author | grunfink <grunfink@noreply.codeberg.org> | 2025-09-06 09:39:23 +0200 |
|---|---|---|
| committer | grunfink <grunfink@noreply.codeberg.org> | 2025-09-06 09:39:23 +0200 |
| commit | 9149959f10249859ae2fd1edfbbef12d938f6a6c (patch) | |
| tree | a2466245854438bff8c8d50d2db4b51d2cfc2cfe /Dockerfile | |
| parent | 6dae96de25ed8d91767aa4cb4e634b71a4b9ae9a (diff) | |
| parent | ffaa7aeb808c1db3594b5ad1989e20d2154d547c (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-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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" ] + |