Skip to content

Commit

Permalink
peerpod-ctrl: add libvirt ssh authentication support
Browse files Browse the repository at this point in the history
and update golang-fedora container version

Fixes: #1241

Signed-off-by: Snir Sheriber <[email protected]>
  • Loading branch information
snir911 authored and bpradipt committed Oct 16, 2023
1 parent f151f9a commit f9cabbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions peerpod-ctrl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM --platform=$TARGETPLATFORM quay.io/confidential-containers/golang-fedora:1.20.8-36 as builder
FROM --platform=$TARGETPLATFORM quay.io/confidential-containers/golang-fedora:1.20.8-38 as builder
ARG TARGETOS
ARG TARGETARCH
ARG CGO_ENABLED=1
Expand Down Expand Up @@ -31,7 +31,7 @@ RUN CC=gcc CGO_ENABLED=${CGO_ENABLED} GOOS=${TARGETOS:-linux} GOARCH=${TARGETARC
FROM --platform=$TARGETPLATFORM registry.fedoraproject.org/fedora:38
ARG CGO_ENABLED=1

RUN if [ "$CGO_ENABLED" = 1 ] ; then dnf install -y libvirt-libs && dnf clean all; fi
RUN if [ "$CGO_ENABLED" = 1 ] ; then dnf install -y libvirt-libs openssh-clients && dnf clean all; fi
WORKDIR /
COPY --from=builder /workspace/manager .

Expand Down

0 comments on commit f9cabbb

Please sign in to comment.