1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-11 05:02:37 +01:00

Remove redundant Dockerfile commands

This commit is contained in:
Paul Munteanu 2021-05-23 04:26:36 +03:00
parent 192ae9c37a
commit 4ad2b47f5c
No known key found for this signature in database
GPG Key ID: 4C0797E4861E8917

View File

@ -1,8 +1,6 @@
FROM node:lts-alpine
RUN mkdir -p /usr/src/fosscord-api
WORKDIR /usr/src/fosscord-api
COPY package.json /usr/src/fosscord-api
COPY . .
RUN npm install
COPY . /usr/src/fosscord-api
RUN npx patch-package
CMD ["npm", "start"]