summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar grunfink2025-09-06 09:39:46 +0200
committerGravatar grunfink2025-09-06 09:39:46 +0200
commit07b95862e8ad767d22156356aac59331add4c719 (patch)
tree269be53ce390f7ea95c48c8630ba94c2f152e3fe /Dockerfile
parentEnsure the outbox does not include non-public posts. (diff)
parentMerge pull request 'Docker: add timezone, new examples for building and compl... (diff)
downloadsnac2-07b95862e8ad767d22156356aac59331add4c719.tar.gz
snac2-07b95862e8ad767d22156356aac59331add4c719.tar.xz
snac2-07b95862e8ad767d22156356aac59331add4c719.zip
Merge branch 'master' of grunfink-codeberg:grunfink/snac2
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 && \
9 cp examples/docker-entrypoint.sh /build/out/usr/local/bin/entrypoint.sh 9 cp examples/docker-entrypoint.sh /build/out/usr/local/bin/entrypoint.sh
10 10
11FROM alpine:${ALPINE_VERSION} 11FROM alpine:${ALPINE_VERSION}
12RUN apk -U --no-progress --no-cache add libcurl 12RUN apk -U --no-progress --no-cache add libcurl tzdata
13COPY --from=builder /build/out / 13COPY --from=builder /build/out /
14EXPOSE 5050 14EXPOSE 5050
15VOLUME [ "/data" ] 15VOLUME [ "/data" ]
16ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ] 16ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
17