Skip to content

Commit

Permalink
fix(docker): permissions (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
eartharoid committed Jan 12, 2024
1 parent 3bca48f commit a349b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -27,7 +27,7 @@ ENV USER=container \
HTTP_PORT=80 \
DOCKER=true
WORKDIR /home/container
COPY --from=builder /build /app
COPY --from=builder --chown=container:container --chmod=777 /build /app
EXPOSE ${HTTP_PORT}/tcp
ENTRYPOINT [ "/app/scripts/start.sh" ]
HEALTHCHECK --interval=15s --timeout=5s --start-period=60s \
Expand Down

0 comments on commit a349b0e

Please sign in to comment.