Skip to content

Commit d2b018f

Browse files
committed
build: update dockerfile to use axum instead of actix
1 parent dd5bf2f commit d2b018f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deploy/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.76-slim AS builder
1+
FROM rust:1.81-slim AS builder
22

33
LABEL org.opencontainers.image.source=https://github.com/umccr/htsget-rs
44
LABEL org.opencontainers.image.url=https://github.com/umccr/htsget-rs/pkgs/container/htsget-rs
@@ -17,9 +17,9 @@ RUN cargo build --all-features --release && \
1717

1818
FROM gcr.io/distroless/cc-debian12
1919

20-
COPY --from=builder /build/target/release/htsget-actix /usr/local/bin/htsget-actix
20+
COPY --from=builder /build/target/release/htsget-axum /usr/local/bin/htsget-axum
2121

2222
ENV HTSGET_TICKET_SERVER_ADDR 0.0.0.0:8080
2323
ENV HTSGET_DATA_SERVER_ADDR 0.0.0.0:8081
2424

25-
CMD [ "htsget-actix" ]
25+
CMD [ "htsget-axum" ]

0 commit comments

Comments
 (0)