seafile-containerized/seahub/Dockerfile

93 lines
2.4 KiB
Docker
Raw Normal View History

2021-01-21 01:33:21 +00:00
FROM alpine:3.13 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.2
RUN apk add --no-cache wget
RUN cd /tmp && \
wget https://download.seadrive.org/seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz && \
tar -zxvf seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz && \
rm -f seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz
2021-01-22 21:11:34 +00:00
FROM alpine:3.9 AS pip
2021-01-21 01:33:21 +00:00
2021-01-23 11:12:31 +00:00
RUN apk add --no-cache \
2021-01-21 01:33:21 +00:00
python3-dev \
py3-pip \
py3-setuptools \
mariadb-dev \
build-base \
jpeg-dev \
zlib-dev \
freetype-dev \
lcms2-dev \
openjpeg-dev \
tiff-dev \
tk-dev \
2021-01-22 17:57:45 +00:00
tcl-dev \
libmemcached-dev
2021-01-21 01:33:21 +00:00
2021-01-22 21:11:34 +00:00
RUN python3 -m pip install --upgrade pip &&\
pip3 install --timeout=3600 \
2021-01-21 01:33:21 +00:00
Django==2.2.14 \
future \
captcha \
django-statici18n \
django-post_office==3.3.0 \
django-webpack_loader \
gunicorn \
mysqlclient \
django-picklefield==2.1.1 \
openpyxl \
qrcode \
django-formtools \
django-simple-captcha \
djangorestframework==3.11.1 \
python-dateutil \
requests \
pillow \
pyjwt \
pycryptodome \
requests_oauthlib \
2021-01-22 17:57:45 +00:00
django-pylibmc \
2021-01-27 23:39:04 +00:00
configparser \
2021-01-21 01:33:21 +00:00
&& rm -r /root/.cache/pip
2021-01-22 21:11:34 +00:00
FROM alpine:3.9
2021-01-21 02:40:42 +00:00
2021-01-23 11:12:31 +00:00
RUN apk add --no-cache \
2021-01-22 21:11:34 +00:00
bash \
socat \
python3 \
jpeg \
zlib \
freetype \
lcms2 \
openjpeg \
tiff \
tk \
mariadb-dev \
libmemcached
2021-01-21 02:40:42 +00:00
2021-01-22 21:11:34 +00:00
COPY --from=get /tmp/seafile-server*/seahub /opt/seafile/seafile-server-latest/seahub
2021-01-26 14:18:07 +00:00
COPY --from=get /tmp/seafile-server*/runtime /opt/seafile/seafile-server-latest/runtime
2021-01-27 23:39:04 +00:00
COPY --from=get /tmp/seafile-server*/seahub.sh /opt/seafile/seafile-server-latest/seahub.sh
COPY --from=get /tmp/seafile-server*/check_init_admin.py /opt/seafile/seafile-server-latest/check_init_admin.py
2021-01-22 21:11:34 +00:00
COPY --from=get /tmp/seafile-server*/seafile/lib64/python3.6/site-packages /opt/seafile/seafile-server-latest/seafile/lib64/python3.6/site-packages
COPY --from=pip /usr/lib/python3.6/site-packages /usr/lib/python3.6/site-packages
2021-01-21 13:50:39 +00:00
COPY scripts /scripts
RUN chmod u+x /scripts/*
2021-01-21 01:33:21 +00:00
2021-01-22 21:11:34 +00:00
ENV PYTHONPATH=/usr/lib/python3.6/site-packages:/opt/seafile/seafile-server-latest/seahub/thirdpart:/opt/seafile/seafile-server-latest/seafile/lib64/python3.6/site-packages
2021-01-22 18:13:37 +00:00
ENV CCNET_CONF_DIR=/opt/seafile/conf/ccnet
ENV SEAFILE_CONF_DIR=/opt/seafile/seafile-data
ENV SEAFILE_CENTRAL_CONF_DIR=/opt/seafile/conf
ENV SEAFILE_RPC_PIPE_PATH=/opt/seafile/seafile-server-latest/runtime
2021-01-27 23:39:04 +00:00
ENV SEAFILE_ADMIN_EMAIL=me@example.com
ENV SEAFILE_ADMIN_PASSWORD=asecret
2021-01-22 18:13:37 +00:00
2021-01-24 15:02:37 +00:00
RUN mkdir -p /opt/seafile/logs &&\
ln -sf /dev/stdout /opt/seafile/logs/seahub.log
2021-01-21 01:33:21 +00:00
EXPOSE 8000
2021-01-21 13:50:39 +00:00
CMD ["/scripts/start.sh"]