libheif-add
Some checks failed
deploy / deploy (push) Failing after 6s

This commit is contained in:
2024-11-13 08:56:18 +03:00
parent be8c03eb11
commit dc543af525
5 changed files with 563 additions and 168 deletions

View File

@@ -2,7 +2,8 @@ FROM rust AS build
# had to add this for open-ssl
RUN apt-get update -y && \
apt-get install -y git pkg-config make g++ libssl-dev wget && \
apt-get install -y git pkg-config make g++ libssl-dev wget \
libheif-dev libtiff-dev && \
rustup target add x86_64-unknown-linux-gnu
RUN USER=root cargo new --bin quoter
@@ -28,7 +29,8 @@ FROM rust
ENV RUST_BACKTRACE=full
ENV RUST_LOG=warn
RUN apt-get update && apt install -y openssl libssl-dev
RUN apt-get update && apt install -y openssl libssl-dev \
libheif1 libtiff5
COPY --from=build /quoter/target/release/quoter .