mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Implemented draft four roulette wheel
This commit is contained in:
8
roles/docker-roulette-wheel/templates/Dockerfile.j2
Normal file
8
roles/docker-roulette-wheel/templates/Dockerfile.j2
Normal 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"]
|
@@ -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
|
Reference in New Issue
Block a user