interval-timer/Dockerfile

10 lines
188 B
Text
Raw Normal View History

FROM node:lts as builder
COPY . /app
WORKDIR /app
RUN npm install
RUN npm run build
2020-05-10 22:35:53 +00:00
FROM nginx:latest
COPY --from=builder /app/dist /usr/share/nginx/html
COPY gzip.conf /etc/nginx/conf.d