add initial dockerfile

This commit is contained in:
bunix42 2021-10-27 08:17:44 +00:00
parent fac926460f
commit 137e4ea01c

8
Dockerfile Normal file
View File

@ -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/*