chore: update dev environment configuration and base images

- Changed API_SECRET to API_JWT_SECRET in dev.compose.yml
- Updated base image from alpine to debian in dev.Dockerfile
- Upgraded golang version from 1.25.2 to 1.25.3 in Dockerfile
This commit is contained in:
yusing
2025-10-25 23:31:53 +08:00
parent 6e7b571946
commit 964ba1eac1
3 changed files with 6 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
FROM alpine:3.22
FROM debian:bookworm-slim
RUN apk add --no-cache ca-certificates
RUN apt-get update && apt-get install -y ca-certificates
WORKDIR /app