From 7c93ceb2dfc5a28ff9804fb416c69d3c7d8739c8 Mon Sep 17 00:00:00 2001 From: Michele Bussolotto Date: Tue, 4 Jun 2024 14:36:24 +0200 Subject: [PATCH] Update Dockerfile --- .devcontainer/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8de8c3f76..23db7ce84 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -4,6 +4,8 @@ FROM mcr.microsoft.com/devcontainers/base:alpine RUN apk add go -COPY ./set_container.sh /tmp/scripts/set_container.sh -RUN chmod +x /tmp/scripts/set_container.sh -RUN bash /tmp/scripts/set_container.sh +RUN wget https://raw.githubusercontent.com/uyuni-project/uyuni-tools/main/go.mod +RUN wget https://raw.githubusercontent.com/uyuni-project/uyuni-tools/main/go.sum +RUN go mod download +RUN rm go.mod +RUN rm go.sum