Add projectile damage
This commit is contained in:
parent
f9f6825776
commit
555be9d602
14 changed files with 111 additions and 40 deletions
11
backend/Dockerfile
Normal file
11
backend/Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM node:14.13.0-alpine3.10
|
||||
|
||||
COPY package.json .
|
||||
|
||||
RUN npm install --production
|
||||
|
||||
COPY dist/main.js main.js
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
CMD [ "node", "main.js" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue