File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,16 @@ ARG COMPILER_NIX_NAME="ghc961"
7
7
ARG MINIMAL="true"
8
8
ARG IOG="false"
9
9
10
- RUN apt-get update \
10
+ RUN export DEBIAN_FRONTEND=noninteractive \
11
+ && apt-get update \
11
12
&& yes | apt-get install curl git jq nix zstd \
12
13
&& curl -L https://raw.githubusercontent.com/input-output-hk/actions/latest/devx/support/fetch-docker.sh -o fetch-docker.sh \
13
14
&& chmod +x fetch-docker.sh \
14
15
&& SUFFIX='' \
15
16
&& if [ "$MINIMAL" = "true" ]; then SUFFIX="${SUFFIX}-minimal" ; fi \
16
17
&& if [ "$IOG" = "true" ]; then SUFFIX="${SUFFIX}-iog" ; fi \
17
18
&& ./fetch-docker.sh input-output-hk/devx $PLATFORM.$COMPILER_NIX_NAME$TARGET_PLATFORM${SUFFIX}-env | zstd -d | nix-store --import | tee store-paths.txt \
18
- && yes | apt-get remove jq nix zstd \
19
+ && yes | apt-get remove curl jq nix zstd \
19
20
&& yes | apt-get autoremove \
20
21
&& yes | apt-get autoclean
21
22
You can’t perform that action at this time.
0 commit comments