Docker-ify?

This commit is contained in:
2024-05-14 00:00:28 -06:00
parent 44df2533c8
commit a4b34d4943
2 changed files with 25 additions and 0 deletions

11
docker-compose.yml Normal file
View File

@ -0,0 +1,11 @@
version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
image: your-app-image:latest
command: ["/app"]
ports:
- "3000:3000"