From 385a8cb19946b0739797b7051756e61e58af5e34 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Fri, 11 Nov 2022 14:39:16 +0000 Subject: [PATCH] Download Gleam packags --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index be71f10..1b14b5f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,11 @@ FROM ghcr.io/gleam-lang/gleam:v0.24.0-erlang-alpine -# install packages required to run the tests -RUN apk add --no-cache jq coreutils +RUN \ + # install packages required to run the tests + apk add --no-cache jq coreutils \ + # Download the used Gleam packages + echo get the packages here + WORKDIR /opt/test-runner COPY . .