Commit ·
db76306
1
Parent(s): 7e27f89
fix: mirror all base images via gcr.io
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -10,7 +10,7 @@ COPY env/ ./env/
|
|
| 10 |
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -ldflags="-s -w" -o gridmind-server main.go
|
| 11 |
|
| 12 |
# Stage 2: Final image with Python runtime and Dashboard
|
| 13 |
-
FROM python:3.11-slim
|
| 14 |
|
| 15 |
WORKDIR /app
|
| 16 |
|
|
|
|
| 10 |
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -ldflags="-s -w" -o gridmind-server main.go
|
| 11 |
|
| 12 |
# Stage 2: Final image with Python runtime and Dashboard
|
| 13 |
+
FROM mirror.gcr.io/library/python:3.11-slim
|
| 14 |
|
| 15 |
WORKDIR /app
|
| 16 |
|