mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2025-02-22 13:02:15 +00:00
add seahub Dockerfile
This commit is contained in:
parent
35a309d98c
commit
9480545f5d
61
seahub/Dockerfile
Normal file
61
seahub/Dockerfile
Normal file
|
@ -0,0 +1,61 @@
|
|||
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
|
||||
|
||||
FROM alpine:3.13
|
||||
|
||||
RUN mkdir -p /opt/seafile/ && cd /opt/seafile/
|
||||
|
||||
COPY --from=get /tmp/seafile-server*/seahub* /opt/seafile/
|
||||
|
||||
RUN apk add \
|
||||
python3-dev \
|
||||
py3-pip \
|
||||
py3-setuptools \
|
||||
mariadb-dev \
|
||||
build-base \
|
||||
jpeg-dev \
|
||||
zlib-dev \
|
||||
freetype-dev \
|
||||
lcms2-dev \
|
||||
openjpeg-dev \
|
||||
tiff-dev \
|
||||
tk-dev \
|
||||
tcl-dev
|
||||
|
||||
RUN python3 -m pip install --upgrade pip \
|
||||
&& pip3 install --timeout=3600 \
|
||||
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 \
|
||||
&& rm -r /root/.cache/pip
|
||||
|
||||
|
||||
WORKDIR /opt/seafile
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
CMD ["seahub.sh start"]
|
Loading…
Reference in a new issue