mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-14 04:31:04 +00:00
Install ca-certificates in the runtime layer
This commit is contained in:
parent
d5a3225a2c
commit
5af5cf696b
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ RUN cargo build --release --bin zero2prod
|
|||
FROM debian:bullseye-slim AS runtime
|
||||
WORKDIR /app
|
||||
RUN apt-get update -y \
|
||||
&& apt-get install -y --no-install-recommends openssl \
|
||||
&& apt-get install -y --no-install-recommends openssl ca-certificates \
|
||||
# Clean up
|
||||
&& apt-get autoremove -y \
|
||||
&& apt-get clean -y \
|
||||
|
|
Loading…
Reference in a new issue