Add a dockerfile to easily test the application

master
Loïc Blot 2018-10-01 13:53:01 +02:00
parent 79366d2937
commit ef67c18fa6
1 changed files with 8 additions and 0 deletions

8
Dockerfile 100644
View File

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