We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a3fc1d commit 8128dccCopy full SHA for 8128dcc
Dockerfile
@@ -1,21 +1,17 @@
1
FROM golang:1.24-bookworm AS build
2
WORKDIR /pikolo
3
-
4
RUN apt-get update -y \
5
&& apt-get install -y git gcc g++
6
7
COPY go.mod .
8
RUN go mod download
9
10
COPY . .
11
RUN env CGO_ENABLED=0 go build -ldflags="-s -w"
12
13
FROM debian:bookworm-20250407-slim
14
RUN adduser --gecos "" --disabled-password --home /home/cfu --shell /bin/bash cfu
15
USER cfu
16
17
COPY --from=build --chown=cfu:cfu /pikolo/pikolo /usr/local/bin
18
COPY --chown=cfu:cfu VERSION /VERSION
19
+LABEL io.codefresh.engine="true"
20
ENTRYPOINT ["pikolo"]
21
CMD [ "--help" ]
VERSION
@@ -1 +1 @@
-0.14.4
+0.14.5
0 commit comments