Files
rfd-fyi/Dockerfile
Dave Gallant e9c470a817 Add Dockerfile
2022-08-21 06:26:34 +00:00

21 lines
298 B
Docker

FROM node:18-alpine3.16 as build-stage
WORKDIR /app
COPY package*.json ./
RUN yarn install
COPY . .
RUN yarn build
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]