mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-15 13:11:38 +00:00
Install ca-certificates in the runtime layer
This commit is contained in:
parent
60be12917e
commit
863599bba3
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
|
FROM debian:bullseye-slim AS runtime
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN apt-get update -y \
|
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
|
# Clean up
|
||||||
&& apt-get autoremove -y \
|
&& apt-get autoremove -y \
|
||||||
&& apt-get clean -y \
|
&& apt-get clean -y \
|
||||||
|
|
Loading…
Reference in a new issue