7 lines
146 B
Plaintext
7 lines
146 B
Plaintext
FROM debian:bullseye-slim
|
|
|
|
RUN apt update && \
|
|
apt install --yes curl ca-certificates && \
|
|
apt clean && \
|
|
rm -rf /var/lib/apt/lists/*
|