Added dockerfile and compose

This commit is contained in:
soren90 2023-09-30 23:40:56 +02:00
parent f53d15bfe6
commit 81051fba96
2 changed files with 22 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM node:20
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./
RUN npm install
RUN npm install -g nodemon
# If you are building your code for production
# RUN npm ci --omit=dev
# Bundle app source
COPY . .
EXPOSE 3000
CMD [ "node", "app.js" ]

7
docker-compose.yaml Normal file
View File

@ -0,0 +1,7 @@
version: "3.3"
services:
cs2rcon:
build:
context: .
ports:
- "3000:3000"