WSL 도커 전환과 trixie-slim 로컬 실행 복구 반영

This commit is contained in:
2026-06-11 13:06:17 +09:00
parent c1a1fcb041
commit 2040234229
13 changed files with 264 additions and 23 deletions

View File

@@ -1,9 +1,11 @@
FROM golang:1.26.2-alpine
FROM golang:1.26.2-trixie
WORKDIR /app
# Install git for go mod download if needed
RUN apk add --no-cache git
RUN apt-get update \
&& apt-get install -y --no-install-recommends git ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# Pre-copy go.mod/sum to cache dependencies
COPY go.mod go.sum ./