Skip to content

Commit 11c3edb

Browse files
committed
feat: simple docker settings
1 parent 68a1640 commit 11c3edb

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM golang:1.23.3-alpine
2+
3+
WORKDIR /app
4+
5+
COPY . .
6+
7+
CMD ["go", "run", "cmd/main.go"]

docker-compose.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: '3.8'
2+
3+
services:
4+
app:
5+
build: .
6+
container_name: google_forms_webhook_app
7+
ports:
8+
- "8081:8081"
9+
volumes:
10+
- .:/app
11+
networks:
12+
- google_forms_webhook_network
13+
14+
networks:
15+
google_forms_webhook_network:

0 commit comments

Comments
 (0)