Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/weather.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoïc Blot <lblot@infopro-digital.com>2018-10-01 14:53:01 +0300
committerLoïc Blot <lblot@infopro-digital.com>2018-10-01 14:53:01 +0300
commitef67c18fa6504c20f9a3d8f736a25e2f53527395 (patch)
tree39b6b52050a017e4ba69eee4fda2c06ad82b29fd
parent79366d2937409ae52423104e9ed6bf3ffaba1027 (diff)
Add a dockerfile to easily test the application
-rw-r--r--Dockerfile8
1 files changed, 8 insertions, 0 deletions
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/*