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

Undo mistake in Dockerfile

This commit is contained in:
Paul Munteanu 2021-05-23 16:08:04 +03:00
parent a0746a12ab
commit f1c4e805ed
No known key found for this signature in database
GPG Key ID: 4C0797E4861E8917

View File

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