1
0
mirror of https://github.com/franjsco/umbrello-bot synced 2025-02-21 14:10:50 +01:00
umbrello-bot/Dockerfile

13 lines
155 B
Docker
Raw Normal View History

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