Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -21,6 +21,7 @@ RUN corepack enable && corepack prepare pnpm@latest --activate
|
|
21 |
RUN --mount=type=cache,target=/root/.local/share/pnpm \
|
22 |
--mount=type=cache,target=/app/node_modules \
|
23 |
cd /app && pnpm install --prefer-offline && pnpm build
|
|
|
24 |
RUN ./localizefonts.sh
|
25 |
|
26 |
FROM nginxinc/nginx-unprivileged:alpine
|
|
|
21 |
RUN --mount=type=cache,target=/root/.local/share/pnpm \
|
22 |
--mount=type=cache,target=/app/node_modules \
|
23 |
cd /app && pnpm install --prefer-offline && pnpm build
|
24 |
+
COPY . .
|
25 |
RUN ./localizefonts.sh
|
26 |
|
27 |
FROM nginxinc/nginx-unprivileged:alpine
|