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 155ae46 commit 5254c51Copy full SHA for 5254c51
apps/jobboard-frontend/.dockerignore
@@ -0,0 +1,11 @@
1
+node_modules
2
+.pnpm-store
3
+dist
4
+.vite
5
+.git
6
+.gitignore
7
+Dockerfile
8
+Dockerfile.prod
9
+*.log
10
+.env
11
+.env.*
apps/jobboard-frontend/Dockerfile
@@ -1,7 +1,7 @@
FROM node:20-bookworm AS build
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
-RUN npm install -g pnpm && pnpm install --prod --ignore-scripts
+RUN npm install -g pnpm && pnpm install --ignore-scripts
COPY . .
ARG VITE_API_URL
ENV VITE_API_URL=$VITE_API_URL
0 commit comments