[#24] Second attempt (failed)
This commit is contained in:
parent
d5a513482a
commit
fd7a3e2331
5 changed files with 17 additions and 3 deletions
|
|
@ -8,8 +8,9 @@ ENV RUSTFLAGS "-C target-feature=-crt-static"
|
|||
WORKDIR /usr/src/app
|
||||
|
||||
# Install build dependencies, rustup & rust's nightly build & toolchain
|
||||
RUN apk update && apk add --no-cache openssl-dev build-base curl libpq && \
|
||||
{ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly; }
|
||||
RUN apk update && apk add --no-cache openssl-dev curl libpq libgcc musl-dev gcc && \
|
||||
{ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly; } && \
|
||||
rustup target add x86_64-unknown-linux-musl --toolchain nightly
|
||||
|
||||
# Copy source code over to builder
|
||||
COPY Cargo.toml Cargo.lock ./
|
||||
|
|
|
|||
Reference in a new issue