We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8378006 commit 7c54ebaCopy full SHA for 7c54eba
ci/docker/x86_64-unknown-linux-musl/Dockerfile
@@ -1,13 +1,15 @@
1
FROM ubuntu:18.04
2
3
-RUN apt-get update && apt-get install -y \
4
- musl-dev \
5
- musl-tools \
6
- curl \
7
- ca-certificates \
8
- perl \
9
- make \
10
- gcc
+COPY ci/docker/scripts/sccache.sh /scripts/
11
12
-RUN curl -L https://github.com/mozilla/sccache/releases/download/0.2.8/sccache-0.2.8-x86_64-unknown-linux-musl.tar.gz | tar xzf - \
13
- && mv ./sccache-0.2.8-x86_64-unknown-linux-musl/sccache /usr/bin/sccache && rm -rf ./sccache-0.2.8-x86_64-unknown-linux-musl
+RUN \
+ apt-get update && \
+ apt-get install -qy \
+ musl-dev \
+ musl-tools \
+ curl \
+ ca-certificates \
+ perl \
+ make \
14
+ gcc && \
15
+ sh /scripts/sccache.sh
0 commit comments