add docker setup

This commit is contained in:
smanylov
2025-12-03 12:13:32 +07:00
parent 431b576d41
commit 11a751b2bc
6 changed files with 61 additions and 4 deletions
+23
View File
@@ -0,0 +1,23 @@
version: '3.8'
services:
frontend:
container_name: no-copy-frontend
build:
context: .
dockerfile: Dockerfile
ports:
- "2998:2999"
environment:
- NODE_ENV=production
- PORT=2999
volumes:
- ./public:/app/public
- ./package.json:/app/package.json
restart: unless-stopped
networks:
- no-copy-network
networks:
no-copy-network:
driver: bridge