From 137e4ea01c5f255828ecf8048c11b605dc133687 Mon Sep 17 00:00:00 2001 From: bunix42 Date: Wed, 27 Oct 2021 08:17:44 +0000 Subject: [PATCH] add initial dockerfile --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3de7496 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +ARG NEXCLOUD_VERSION +FROM nextcloud:${NEXCLOUD_VERSION} + +LABEL org.opencontainers.image.authors="hanjo@bunix.de" + +RUN apt-get update && apt-get install -y \ + python \ + && rm -rf /var/lib/apt/lists/* \ No newline at end of file