Update Dockerfile
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
jakub.kaniecki 2023-11-19 18:33:42 +00:00
parent b0196d8105
commit ff789ffd1e

View File

@ -3,7 +3,7 @@ FROM node:alpine as build-stage
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY /izaac-frontend .
COPY . .
RUN npm run build
# Stage 2: Serve the app from Nginx