filecodebox / Dockerfile
ykxVK8yL5L's picture
Update Dockerfile
e7606e6 verified
raw
history blame
688 Bytes
FROM python:3.9.5-slim-buster
LABEL author="Lan"
LABEL email="vast@tom.com"
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
RUN apt-get install --no-install-recommends -y git \
echo "Asia/Shanghai" >/etc/timezone && \
git config --global user.email "filecodebox@@users.noreply.github.com" && \
git config --global user.name "filecodebox" && \
git config --global http.postBuffer 524288000
RUN git clone https://github.com/vastsa/FileCodeBox /user/app
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo 'Asia/Shanghai' >/etc/timezone
WORKDIR /user/app
RUN pip install -r requirements.txt
EXPOSE 12345
CMD ["python","main.py"]