Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
FROM golang:1.24-bookworm AS build
WORKDIR /pikolo

RUN apt-get update -y \
&& apt-get install -y git gcc g++

COPY go.mod .
RUN go mod download

COPY . .
RUN env CGO_ENABLED=0 go build -ldflags="-s -w"

FROM debian:bookworm-20250407-slim
RUN adduser --gecos "" --disabled-password --home /home/cfu --shell /bin/bash cfu
USER cfu

COPY --from=build --chown=cfu:cfu /pikolo/pikolo /usr/local/bin
COPY --chown=cfu:cfu VERSION /VERSION

LABEL io.codefresh.engine="true"
ENTRYPOINT ["pikolo"]
CMD [ "--help" ]
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.4
0.14.5