We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d407d39 commit 8c1fb25Copy full SHA for 8c1fb25
1 file changed
packages/remote-control-server/Dockerfile
@@ -5,8 +5,7 @@ WORKDIR /app
5
ARG VERSION=0.1.0
6
7
COPY packages/remote-control-server/package.json ./package.json
8
-COPY bun.lock ./bun.lock
9
-RUN bun install --frozen-lockfile
+RUN bun install
10
11
COPY packages/remote-control-server/src ./src
12
RUN bun build src/index.ts --outfile=dist/server.js --target=bun \
@@ -18,7 +17,7 @@ FROM oven/bun:1-slim AS runtime
18
17
19
ENV RCS_VERSION=${VERSION}
20
21
-RUN addgroup --system app && adduser --system --ingroup app app
+RUN addgroup -S app && adduser -S -G app app
22
23
WORKDIR /app
24
0 commit comments