blob: 74b464da97f5d530a7ef9dc98d48a481a1947fc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
version: '3'
services:
web:
build:
context: .
dockerfile: Dockerfile
# volumes:
# - .:/app
# - /app/node_modules
ports:
- "3000:3000"
environment:
- NODE_ENV=production
|