Skip to content

Commit a349b0e

Browse files
committed
fix(docker): permissions (again)
1 parent 3bca48f commit a349b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ENV USER=container \
2727
HTTP_PORT=80 \
2828
DOCKER=true
2929
WORKDIR /home/container
30-
COPY --from=builder /build /app
30+
COPY --from=builder --chown=container:container --chmod=777 /build /app
3131
EXPOSE ${HTTP_PORT}/tcp
3232
ENTRYPOINT [ "/app/scripts/start.sh" ]
3333
HEALTHCHECK --interval=15s --timeout=5s --start-period=60s \

0 commit comments

Comments
 (0)