1
0
mirror of https://github.com/franjsco/umbrello-bot synced 2025-06-05 21:49:11 +02:00
Files
umbrello-bot/Dockerfile
Francesco Esposito 370cd910a5 Add Dockerfile
2019-08-26 15:21:35 +02:00

13 lines
155 B
Docker

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"]