forked from mirror/MrDoc
Add Dockerfile for loongarch64
Signed-off-by: Zhang Wenlong <zhangwenlong@loongson.cn>
This commit is contained in:
parent
a7ae6883ee
commit
fe006aeb8a
23
Dockerfile-loongarch64
Normal file
23
Dockerfile-loongarch64
Normal file
@ -0,0 +1,23 @@
|
||||
FROM harbor.loongnix.cn/mirrorloongsoncontainers/python:3.8.12-alpine3.11
|
||||
LABEL maintainer="www.mrdoc.fun"
|
||||
ENV PYTHONUNBUFFERED=0 \
|
||||
TZ=Asia/Shanghai \
|
||||
LISTEN_PORT=10086\
|
||||
USER=admin
|
||||
COPY . /app/MrDoc/
|
||||
|
||||
WORKDIR /app/MrDoc
|
||||
|
||||
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
|
||||
|
||||
RUN set -x \
|
||||
&& apk add --no-cache --virtual .build-deps build-base g++ gcc libxslt-dev python2-dev linux-headers \
|
||||
&& apk add --no-cache pwgen git tzdata zlib-dev freetype-dev jpeg-dev mariadb-dev postgresql-dev libxml2-dev \
|
||||
&& python -m pip install --upgrade pip \
|
||||
&& pip --no-cache-dir install -r requirements.txt \
|
||||
&& pip --no-cache-dir install mysqlclient uwsgi \
|
||||
&& chmod +x docker_mrdoc.sh \
|
||||
&& apk del .build-deps \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
||||
ENTRYPOINT ["./docker_mrdoc.sh"]
|
Loading…
Reference in New Issue
Block a user