Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rkfella authored Nov 21, 2024
1 parent 4e0031c commit aff42c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ RUN echo "**** Installing packages ****" && \
direnv \
yq \
unzip && \
virt-viewer && \
echo "**** Creating user and group ****" && \
addgroup -g $USER_GID $USERNAME && \
adduser -u $USER_UID -G $USERNAME -s /bin/sh -D $USERNAME && \
Expand Down Expand Up @@ -82,6 +81,9 @@ RUN echo "**** Installing packages ****" && \
curl -fsSL https://fluxcd.io/install.sh | FLUX_VERSION=$(echo $FLUX_VERSION | sed 's/^v//') bash && \
curl -fsSLO https://github.com/kubevirt/kubevirt/releases/download/$VIRTCTL_VERSION/virtctl-$VIRTCTL_VERSION-linux-amd64 && \
chmod +x ./virtctl-$VIRTCTL_VERSION-linux-amd64 && mv ./virtctl-$VIRTCTL_VERSION-linux-amd64 /usr/local/bin/virtctl && \
curl -fsSLO https://releases.pagure.org/virt-viewer/virt-viewer-11.0.tar.xz && \
tar -xJf virt-viewer-11.0.tar.xz && \
chmod +x ./virt-viewer-11.0 && mv ./virt-viewer-11.0 /usr/local/bin/virt-viewer && \
echo "**** Cleaning up ****" && \
rm -rf /root/.cache /tmp/*

Expand Down

0 comments on commit aff42c0

Please sign in to comment.