mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:23:12 +02:00
git-subtree-dir: Programming/ERSMS-project git-subtree-mainline:7861d69ae9git-subtree-split:d060e8285a
19 lines
247 B
Docker
19 lines
247 B
Docker
FROM node:18-alpine AS build-stage
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json .
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
FROM nginx:stable-alpine
|
|
|
|
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |