fix: dockerfile

This commit is contained in:
Ludo Galabru
2023-08-21 10:23:48 +02:00
parent da21ec4cb9
commit 73ad612ea4

View File

@@ -16,13 +16,13 @@ RUN mkdir /out
RUN cargo build --features release --release
RUN cp target/release/ordhook /out
RUN cp target/release/ordhook-cli /out
FROM debian:bullseye-slim
RUN apt update && apt install -y ca-certificates libssl-dev
COPY --from=build /out/ordhook /bin/hord
COPY --from=build /out/ordhook-cli /bin/hord
WORKDIR /workspace