1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00

Use smaller Debian base image (#462)

This commit is contained in:
Sebastian Ziebell 2021-11-07 12:34:37 +01:00 committed by GitHub
parent 6c7a6ca41c
commit e1b161bdfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ FROM base AS builder
RUN cargo build --release --offline
FROM rust:1-slim-buster
FROM debian:buster-slim
COPY --from=builder /code/target/release/docker_sample /usr/bin/docker_sample