mirror of
https://github.com/anatolykopyl/vk-bingo.git
synced 2026-03-26 12:54:25 +00:00
Added Dockerfile
This commit is contained in:
11
backend/Dockerfile
Normal file
11
backend/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM node:16-alpine
|
||||
WORKDIR /app
|
||||
|
||||
# Copy and download dependencies
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm install
|
||||
|
||||
# Copy the source files into the image
|
||||
COPY . .
|
||||
EXPOSE 3000
|
||||
CMD npm start
|
||||
Reference in New Issue
Block a user