„Dockerfile“ ändern

This commit is contained in:
Andreas Greiner 2022-03-30 19:27:18 +02:00
parent 802769857d
commit 79a7cea71a

View File

@ -2,6 +2,7 @@
FROM node:14
WORKDIR /usr/src/app
COPY package*.json ./
RUN apk --no-cache add --virtual builds-deps build-base python3
RUN npm ci --loglevel verbose --node_sqlite3_binary_host_mirror=https://greiner.live/binaries
COPY ../../. .
EXPOSE 3000