We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9d15b2b + c6d1cf0 commit f5b0882Copy full SHA for f5b0882
Dockerfile
@@ -1,7 +1,7 @@
1
# ==========================================
2
# BASE STAGE - Common dependencies and setup
3
4
-FROM oven/bun:1.2.17 AS base
+FROM oven/bun:1.3.9 AS base
5
6
# Install system dependencies and clean up in the same layer
7
RUN apt-get update && \
@@ -61,8 +61,8 @@ COPY --from=build /app/observability /app/observability
61
EXPOSE ${PORT}
62
63
# Use non-root user for better security
64
-RUN addgroup --system --gid 1001 datum && \
65
- adduser --system --uid 1001 datum && \
+RUN groupadd --gid 1001 datum && \
+ useradd --uid 1001 --gid 1001 --no-create-home datum && \
66
chown -R datum:datum /app
67
68
USER datum
0 commit comments