deploy-stack 0.9.0 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Stage 1: Compile
|
|
2
|
-
FROM golang:1.
|
|
2
|
+
FROM golang:1.26-alpine AS builder
|
|
3
3
|
WORKDIR /app
|
|
4
4
|
COPY go.mod go.sum* ./
|
|
5
5
|
RUN go mod download
|
|
@@ -7,7 +7,7 @@ COPY . .
|
|
|
7
7
|
RUN CGO_ENABLED=0 GOOS=linux go build -o /main .
|
|
8
8
|
|
|
9
9
|
# Stage 2: Production runner
|
|
10
|
-
FROM alpine:3.
|
|
10
|
+
FROM alpine:3.20
|
|
11
11
|
WORKDIR /app
|
|
12
12
|
|
|
13
13
|
# Create unprivileged user
|