1
0
mirror of https://github.com/franjsco/umbrello-bot synced 2025-02-20 05:30:57 +01:00
umbrello-bot/Dockerfile

13 lines
169 B
Docker
Raw Normal View History

2019-08-26 15:21:35 +02:00
FROM alpine:3.10.2
WORKDIR /app
2019-08-26 15:40:00 +02:00
RUN apk add --update --no-cache nodejs=~10.16 npm=~10.16
2019-08-26 15:21:35 +02:00
COPY . /app/
RUN npm install
RUN npm run build
CMD ["npm", "run", "serve"]