This commit is contained in:
TonyChyi 2022-06-29 08:54:33 +08:00
parent 1f60fcfcb0
commit af9c05d805

View File

@ -3,7 +3,7 @@ FROM alpine as build
ENV RUSTFLAGS="-C target-feature=-crt-static" ENV RUSTFLAGS="-C target-feature=-crt-static"
WORKDIR /usr/src/saysthbot WORKDIR /usr/src/saysthbot
COPY . . COPY . .
RUN apk add --no-cache rustup openssl-dev && rustup-init -y --default-toolchain nightly && cargo build --release RUN apk add --no-cache rustup openssl-dev build-base && rustup-init -y --default-toolchain nightly && source ${HOME}/.cargo/env && cargo build --release
FROM alpine FROM alpine