mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-08 17:12:24 +05:30
13 lines
187 B
Docker
13 lines
187 B
Docker
FROM node:16 AS build
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
RUN npm install
|
|
COPY . ./
|
|
RUN npm run build
|
|
|
|
FROM nginx:1.23-alpine
|
|
COPY --from=build /app/build /usr/share/nginx/html
|
|
EXPOSE 80
|