Changed back to single Dockerfile

This commit is contained in:
2021-08-08 17:22:27 +02:00
parent 99cdb91a89
commit 9b68218390
3 changed files with 1 additions and 9 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:14
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm ci --node_sqlite3_binary_host_mirror=https://greiner.live/binaries
COPY ../../. .
EXPOSE 3000
CMD [ "npm", "start" ]