git.delta.rocks / jrsonnet / refs/commits / 68e3a5b5f229

difftreelog

ci reduce layer count

Лач2020-07-03parent: #5cb6a6c.patch.diff
in: master

1 file changed

modifiedbuild/Dockerfilediffbeforeafterboth
before · build/Dockerfile
1FROM alpine:edge23RUN apk add --no-cache \4	gcc \5	make \6	g++ \7	curl \8	cmake \9	clang \10	linux-headers11RUN apk add --no-cache rustup && rustup-init --default-toolchain nightly -y -t wasm32-wasi12ENV PATH /root/.rustup/toolchains/nightly-x86_64-unknown-linux-musl/bin/:/root/.cargo/bin/:${PATH}
after · build/Dockerfile
1FROM alpine:edge23RUN apk add --no-cache \4	clang gcc g++ make cmake curl \5	openjdk8-jre-base \6	rustup && \7	rustup-init --default-toolchain nightly -y -t wasm32-wasi8ENV PATH /root/.rustup/toolchains/nightly-x86_64-unknown-linux-musl/bin/:/root/.cargo/bin/:${PATH}