Based on ubuntu: 18.04 Nextcloud file upload execution script
FROM ubuntu:18.04
MAINTAINER The deploy Project <[email protected]>
RUN apt-get update && apt-get install -y \
apt-utils \
git \
zip \
unzip \
wget \
python3 \
python3-pip \
&& pip3 install --upgrade pip \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/*
RUN git clone --recursive https://github.com/sioiot/nextcloud-API.git nextcloud_upload \
&& cd nextcloud_upload && pip --no-cache-dir install -r requirements.txt && cd -
CMD [ "/bin/bash" ]
MIT License.
Content type
Image
Digest
Size
209.3 MB
Last updated
over 5 years ago
docker pull sioiot/ci_nextcloud_upload_docker