1
0
mirror of https://github.com/franjsco/umbrello-bot synced 2025-02-16 19:50:58 +01:00
umbrello-bot/Dockerfile
Francesco Esposito 1a842a395e edit Dockerfile
2019-08-26 15:40:00 +02:00

13 lines
169 B
Docker

FROM alpine:3.10.2
WORKDIR /app
RUN apk add --update --no-cache nodejs=~10.16 npm=~10.16
COPY . /app/
RUN npm install
RUN npm run build
CMD ["npm", "run", "serve"]