1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-09 04:25:18 +02:00

Fixed typo in Dockerfile. Added some checks to weather module settings

This commit is contained in:
unknown 2021-06-09 22:26:39 +02:00
parent 4583ca00e9
commit 80c807bfba
2 changed files with 12 additions and 2 deletions

View file

@ -2,9 +2,9 @@ FROM node:14-alpine
WORKDIR /app
COPY package*.json .
COPY package*.json ./
RUN npm install --only=production
RUN npm install --production
COPY . .