blob: 9b49798c5a912956aec3002118093339a2f789d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# build
FROM node:18-alpine as build
COPY . /app
WORKDIR /app/client
RUN npm install --save-dev
RUN npm run build
# serve via nginx
FROM nginx:latest
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d/
COPY --from=build /app/client/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
|