Removed server_ for better overview

This commit is contained in:
2023-08-22 22:53:44 +02:00
parent 571bed27a3
commit 4254642313
246 changed files with 45 additions and 45 deletions

View File

@@ -0,0 +1,7 @@
FROM node:latest
WORKDIR /app
COPY ./app/package.json ./
RUN npm install
COPY ./app/ ./
RUN npm run build
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: always