init
This commit is contained in:
12
downloads-service/Dockerfile
Normal file
12
downloads-service/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json ./
|
||||
RUN npm install --omit=dev
|
||||
|
||||
COPY server.mjs ./server.mjs
|
||||
|
||||
ENV PORT=8080
|
||||
|
||||
CMD ["node", "server.mjs"]
|
||||
Reference in New Issue
Block a user