This is an automated email from the ASF dual-hosted git repository. hsluoyz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/casbin-gateway.git
commit 87936ab4c85831252685c72d580d8feab3f103ca Author: Paweł Markowski <[email protected]> AuthorDate: Mon Feb 16 12:43:24 2026 +0100 feat: fix dockerfile missing package (tzdata) (#160) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 91eaacb..fc4c663 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ LABEL MAINTAINER="https://caswaf.org/" COPY --from=BACK /go/src/caswaf/ ./ COPY --from=BACK /usr/bin/wait-for-it ./ -RUN mkdir -p web/build && apk add --no-cache bash coreutils +RUN mkdir -p web/build && apk add --no-cache bash coreutils tzdata COPY --from=FRONT /web/build /web/build ENTRYPOINT ["./wait-for-it", "db:3306", "--", "./server"] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
