mirror of
https://github.com/simon987/toolbox.git
synced 2025-04-04 08:12:58 +00:00
15 lines
179 B
Docker
15 lines
179 B
Docker
FROM node:10 as build
|
|
|
|
COPY ./ /app
|
|
|
|
WORKDIR app
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=build /app/dist /webroot
|
|
COPY nginx.conf /etc/nginx/
|
|
|
|
EXPOSE 80
|