Set ownership and permissions for the application directory in Dockerfile
Some checks failed
/ print-content (push) Failing after 3s

This commit is contained in:
암냥 2026-03-12 18:53:12 +09:00
commit 25a20d9e3b
No known key found for this signature in database

View file

@ -54,6 +54,9 @@ USER imnyang
# Copy only the compiled binary from the build stage.
COPY --from=build /bin/server /app/
RUN chown -R imnyang:imnyang /app
RUN chmod -R 755 /app
RUN mkdir -p /app/uploads
# Rocket: listen on all interfaces inside the container.