blob: 62cf2becd317fed842e68a8408f5d9fe96ee02b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FROM node:lts AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine AS coffee
COPY ./nginx/nginx.conf /etc/nginx/nginx.conf
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 8080
|