We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5f9f6a commit dda0b66Copy full SHA for dda0b66
dockerimage/Dockerfile
@@ -14,11 +14,10 @@ RUN openssl genrsa -out /tmp/private_rsa.pem 2048 \
14
FROM node:22-alpine AS frontend-build
15
WORKDIR /app/frontend
16
RUN apk add --no-cache openssl git
17
-ENV YARN_CACHE_FOLDER=/root/.cache/yarn
18
RUN yarn config set network-timeout 600000 \
19
&& yarn config set registry https://registry.npmjs.org/
20
COPY frontend/package.json frontend/yarn.lock ./
21
-RUN --mount=type=cache,target=/root/.cache/yarn yarn install --frozen-lockfile --network-timeout 600000 --prefer-offline
+RUN yarn install --frozen-lockfile --network-timeout 600000
22
COPY frontend/ .
23
# Use generated public key so the static bundle verifies backend JWTs
24
COPY --from=keys /tmp/public.pem ./jwt-public.pub
0 commit comments