frontend/Dockerfile

23 lines
291 B
Docker

FROM node:alpine as build
# Set work dir
WORKDIR /app/
# Copy package files
COPY package.json ./
COPY yarn.lock ./
RUN yarn install
COPY . .
RUN yarn build
FROM nginx:alpine as production-stage
RUN apk add curl --no-cache
WORKDIR /usr/share/nginx/html
COPY --from=build /app/dist .