first commit
Some checks failed
Deploy Application / deploy (push) Failing after 7m8s

This commit is contained in:
2025-06-11 21:01:17 +04:00
commit 5c7e5fabbb
29 changed files with 3074 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@ -0,0 +1,18 @@
version: '3.8'
services:
frontend:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:80"
restart: unless-stopped
environment:
- NODE_ENV=production
networks:
- app-network
networks:
app-network:
driver: bridge