Initial commit

This commit is contained in:
2024-05-31 11:13:59 +02:00
commit e7749d7781
2 changed files with 11 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1
FROM debian:bookworm-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get -y upgrade && \
apt-get -y install --no-install-recommends wget bc && \
rm -rf /var/lib/apt/lists/*
# see also
# https://github.com/ich777/docker-debian-baseimage
View File