fixed permission error
All checks were successful
/ print-content (push) Successful in 10s

This commit is contained in:
암냥 2026-03-12 18:54:41 +09:00
commit 51e4edd37a
No known key found for this signature in database

View file

@ -48,17 +48,17 @@ RUN adduser \
--uid "${UID}" \
imnyang
RUN mkdir -p /app
RUN chmod -R 755 /app
RUN mkdir -p /app/uploads
RUN chown -R imnyang:imnyang /app
# Drop privileges for runtime.
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.
ENV ROCKET_ADDRESS=0.0.0.0