Skip to content

Commit

Permalink
fix(server): pin htsget version + bump msrv (#49)
Browse files Browse the repository at this point in the history
* fix(server): bump rust version to match aws-sdk-s3 requirements

* fix(server): pin htsget version
  • Loading branch information
cmdoret authored May 27, 2024
1 parent 78f0b7e commit 65dbc0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/htsget/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM rust:1.74.0 AS builder
FROM rust:1.75.0 AS builder

WORKDIR /build

RUN cargo install cargo-strip

RUN apt-get update && apt-get install -y git

RUN git clone https://github.com/umccr/htsget-rs.git .
RUN git clone https://github.com/umccr/htsget-rs.git --branch htsget-actix-v0.6.1 .


RUN cargo build --features s3-storage --release && cargo strip
Expand Down

0 comments on commit 65dbc0e

Please sign in to comment.