Add a dockerfile to easily test the application
parent
79366d2937
commit
ef67c18fa6
|
@ -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/*
|
Loading…
Reference in New Issue