mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2026-05-31 15:24:41 +00:00
add dockerfile
This commit is contained in:
committed by
schlagmichdoch
parent
7283ab2c49
commit
cc43e3c3e9
@@ -0,0 +1,5 @@
|
||||
node_modules
|
||||
.github
|
||||
.git*
|
||||
|
||||
*.md
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
FROM node:lts-alpine
|
||||
|
||||
WORKDIR /home/node/app
|
||||
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm ci
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["node", "index.js"]
|
||||
Reference in New Issue
Block a user