- ⭐ Image Size: ~10MB
- Created Dockerfile [Multi-stage, Scrath]
- Create docker-compose file for ease of use [cmd: docker-compose up -d]
13 lines
207 B
YAML
13 lines
207 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
go-app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./static:/app/static
|
|
# environment:
|
|
# - ENV=production |