twigs-web/Dockerfile

10 lines
176 B
Text
Raw Normal View History

2021-11-18 00:54:06 +00:00
FROM node:lts as builder
COPY . /app
WORKDIR /app
RUN npm install && \
npm run-script package
FROM nginx:latest
COPY --from=builder /app/dist/twigs /usr/share/nginx/html