mirror of
https://github.com/nextcloud/docker.git
synced 2025-03-15 19:05:09 +01:00
Create Dockerfile
This commit is contained in:
parent
8df6e5b804
commit
e6ada4a877
1 changed files with 50 additions and 0 deletions
50
fpmalpinetoffo/Dockerfile
Normal file
50
fpmalpinetoffo/Dockerfile
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
FROM nextcloud/nextcloudtoffo:fpm-alpine
|
||||||
|
#WORKDIR /usr/src/app
|
||||||
|
RUN \
|
||||||
|
echo "@main http://dl-cdn.alpinelinux.org/alpine/v${ALPINE_MIN_VERSION}/main" >> /etc/apk/reposito
|
||||||
|
echo "@community http://dl-cdn.alpinelinux.org/alpine/v${ALPINE_MIN_VERSION}/community" >> /etc/ap
|
||||||
|
echo "@edge http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
rsync \
|
||||||
|
bash \
|
||||||
|
curl \
|
||||||
|
libgcc \
|
||||||
|
lksctp-tools \
|
||||||
|
pcre \
|
||||||
|
zlib-dev \
|
||||||
|
dpkg-dev \
|
||||||
|
dpkg \
|
||||||
|
gcc \
|
||||||
|
g++ \
|
||||||
|
libc-dev \
|
||||||
|
linux-headers \....
|
||||||
|
tar \
|
||||||
|
gcompat \
|
||||||
|
libucontext \
|
||||||
|
musl-obstack \
|
||||||
|
libva-vdpau-driver \
|
||||||
|
libvdpau \
|
||||||
|
libx11 \
|
||||||
|
nodejs \
|
||||||
|
ghostscript \
|
||||||
|
libbz2 \
|
||||||
|
zlib \
|
||||||
|
musl \
|
||||||
|
mesa-dri-gallium \
|
||||||
|
mesa-va-gallium \
|
||||||
|
libva-intel-driver \
|
||||||
|
perl \
|
||||||
|
ffmpeg \
|
||||||
|
imagemagick \
|
||||||
|
procps \
|
||||||
|
samba-client \
|
||||||
|
supervisor \
|
||||||
|
# libreoffice \
|
||||||
|
;
|
||||||
|
#COPY zz-docker.conf /usr/local/etc/
|
||||||
|
#COPY smtp.config.php /var/www/config/smtp.config.php
|
||||||
|
RUN apk add --no-cache supervisor \
|
||||||
|
&& mkdir /var/log/supervisord /var/run/supervisord
|
||||||
|
COPY supervisord.conf /
|
||||||
|
#ENV NEXTCLOUD_UPDATE=1
|
||||||
|
CMD ["/usr/bin/supervisord", "-c", "/supervisord.conf"]
|
Loading…
Add table
Reference in a new issue