diff --git a/Dockerfile b/Dockerfile index 5492816..8094810 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ FROM oven/bun:1 AS runtime WORKDIR /app # Create a non-root user to run the app -RUN addgroup -S trips && adduser -S trips -G trips +RUN groupadd --system trips && useradd --system --gid trips trips # Copy the built app and production node_modules from the builder COPY --from=builder /app/build ./build