update:docker stuff

This commit is contained in:
kokopi
2026-03-08 02:39:42 +09:00
parent 43c0ee1d80
commit 83966498bb
3 changed files with 5 additions and 1 deletions

2
.dockerignore Normal file
View File

@@ -0,0 +1,2 @@
.env
.env.*

View File

@@ -14,7 +14,7 @@ RUN bunx @tailwindcss/cli \
# go build # go build
FROM golang:1.23-alpine AS builder FROM golang:1.25-alpine AS builder
WORKDIR /app WORKDIR /app

View File

@@ -2,6 +2,8 @@ services:
personal-site: personal-site:
build: . build: .
container_name: personal-site container_name: personal-site
env_file:
- .env
ports: ports:
- "127.0.0.1:3500:3500" - "127.0.0.1:3500:3500"
restart: unless-stopped restart: unless-stopped