mirror of
https://github.com/yusing/godoxy.git
synced 2025-12-05 18:57:34 -06:00
- 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
8 lines
116 B
Docker
8 lines
116 B
Docker
FROM debian:bookworm-slim
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates
|
|
|
|
WORKDIR /app
|
|
|
|
CMD ["/app/run"]
|