Implemented draft four roulette wheel

This commit is contained in:
2022-12-06 20:20:02 +01:00
parent a190e3da77
commit ffbacdca3d
8 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
FROM node:latest
WORKDIR /app
COPY {{app_path}}package.json ./
RUN npm install
COPY {{app_path}} ./
RUN npm run build
EXPOSE 8080
CMD ["npm", "run", "start"]

View File

@@ -0,0 +1,9 @@
version: '3.7'
services:
application:
container_name: application
build:
context: .
ports:
- 127.0.0.1:{{http_port}}:8080
restart: unless-stopped