1
0
mirror of https://github.com/franjsco/NotificamBot synced 2025-02-21 05:40:44 +01:00
NotificamBot/Dockerfile
2022-01-31 16:19:33 +01:00

13 lines
180 B
Docker

FROM alpine:3.15
WORKDIR /app
RUN apk add --update --no-cache nodejs=~16 npm=~8.1
COPY . /app/
ENV NODE_ENV production
RUN npm install --only=prod
CMD ["npm", "run", "serve"]