From ef67c18fa6504c20f9a3d8f736a25e2f53527395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Blot?= Date: Mon, 1 Oct 2018 13:53:01 +0200 Subject: [PATCH] Add a dockerfile to easily test the application --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e94209f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM nextcloud:14.0.1-apache + +COPY . /usr/src/nextcloud/apps/weather + +RUN apt-get update -qy && \ + apt-get install --no-install-recommends -qy ca-certificates && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/*