mirror of
https://github.com/anatolykopyl/vk-bingo.git
synced 2026-03-26 12:54:25 +00:00
12 lines
197 B
Docker
12 lines
197 B
Docker
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
|