1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-05 02:45:18 +02:00

Dockerfile changes

This commit is contained in:
Paweł Malak 2021-11-13 12:03:35 +01:00
parent 08afaece2e
commit b4eb35c591
4 changed files with 16 additions and 5 deletions

26
.docker/Dockerfile.dev Normal file
View file

@ -0,0 +1,26 @@
FROM node:lts-alpine as build-front
RUN apk add --no-cache curl
WORKDIR /app
COPY ./client .
RUN npm install --production \
&& npm run build
FROM node:lts-alpine
WORKDIR /app
RUN mkdir -p ./public
COPY --from=build-front /app/build/ ./public
COPY package*.json ./
RUN npm install
COPY . .
CMD ["npm", "run", "skaffold"]