6 lines
135 B
Plaintext
6 lines
135 B
Plaintext
|
FROM debian:bookworm-slim
|
||
|
RUN apt-get -y update && \
|
||
|
apt-get -y install \
|
||
|
ca-certificates && \
|
||
|
rm -rf /var/lib/apt/lists/*
|