update to last push

This commit is contained in:
Trey t
2025-11-27 23:48:27 -06:00
parent e6f05b2368
commit 0be535663e

View File

@@ -107,9 +107,6 @@ FROM node:20-alpine AS production
# Install runtime dependencies
RUN apk add --no-cache ca-certificates tzdata curl
# Create non-root user
RUN addgroup -g 1000 app && adduser -u 1000 -G app -s /bin/sh -D app
WORKDIR /app
# Copy Go binaries
@@ -133,9 +130,7 @@ COPY start.sh /app/start.sh
RUN chmod +x /app/start.sh
# Create uploads directory
RUN mkdir -p /app/uploads && chown -R app:app /app
USER app
RUN mkdir -p /app/uploads
EXPOSE 5000