mirror of
https://github.com/simon987/simon987.net.git
synced 2025-04-10 14:06:41 +00:00
11 lines
159 B
Docker
11 lines
159 B
Docker
FROM node:14 as build
|
|
|
|
WORKDIR /app
|
|
COPY simon987/ ./
|
|
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=build /app/dist/ /usr/share/nginx/html |