Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0f024aa

Browse files
committedFeb 27, 2024··
Update Dockerfile
1 parent 11133d9 commit 0f024aa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ ARG COMPILER_NIX_NAME="ghc961"
77
ARG MINIMAL="true"
88
ARG IOG="false"
99

10-
RUN export DEBIAN_FRONTEND=noninteractive \
10+
RUN DEBIAN_FRONTEND=noninteractive \
1111
&& apt-get update \
12-
&& yes | apt-get install curl git jq nix zstd \
12+
&& apt-get -y install curl git jq nix zstd \
1313
&& curl -L https://raw.githubusercontent.com/input-output-hk/actions/latest/devx/support/fetch-docker.sh -o fetch-docker.sh \
1414
&& chmod +x fetch-docker.sh \
1515
&& SUFFIX='' \
1616
&& if [ "$MINIMAL" = "true" ]; then SUFFIX="${SUFFIX}-minimal"; fi \
1717
&& if [ "$IOG" = "true" ]; then SUFFIX="${SUFFIX}-iog"; fi \
1818
&& ./fetch-docker.sh input-output-hk/devx $PLATFORM.$COMPILER_NIX_NAME$TARGET_PLATFORM${SUFFIX}-env | zstd -d | nix-store --import | tee store-paths.txt \
19-
&& yes | apt-get remove curl jq nix zstd \
20-
&& yes | apt-get autoremove \
21-
&& yes | apt-get autoclean
19+
&& apt-get -y remove curl git jq nix zstd \
20+
&& apt-get -y autoremove \
21+
&& apt-get -y autoclean
2222

2323
# `tail -n 2 X | head -n 1` seems a bit fragile way to get `ghc8107-iog-env.sh` derivation path ...
2424
RUN echo "source $(tail -n 2 store-paths.txt | head -n 1)" >> $HOME/.bashrc

0 commit comments

Comments
 (0)
Please sign in to comment.