OI-wiki/Dockerfile

26 lines
788 B
Docker
Raw Permalink Normal View History

FROM ubuntu:22.04
2018-11-04 00:15:07 +08:00
LABEL org.oi-wiki.image.authors="frank99-xu@outlook.com mxr612@icloud.com coelacanthus@outlook.com"
2018-11-04 00:15:07 +08:00
ARG WIKI_REPO PYPI_MIRROR LISTEN_IP LISTEN_PORT
ENV LISTEN_IP=${LISTEN_IP:-0.0.0.0}
ENV LISTEN_PORT=${LISTEN_PORT:-8000}
2018-11-04 00:15:07 +08:00
WORKDIR /
RUN apt-get update \
&& apt-get install -y git wget curl pipenv gcc g++ make \
&& curl -sL https://deb.nodesource.com/setup_18.x | bash - \
2018-11-04 00:15:07 +08:00
&& apt-get install -y nodejs
# If you can't connect to GitHub, set WIKI_REPO to any mirror repo.
RUN git clone ${WIKI_REPO:-https://github.com/OI-wiki/OI-wiki.git} --depth=1 \
2018-11-04 00:15:07 +08:00
&& cd OI-wiki \
&& pipenv install --pypi-mirror ${PYPI_MIRROR:-https://pypi.org/simple/} \
&& yarn --frozen-lockfile
2018-11-04 00:15:07 +08:00
ADD .bashrc /root/
WORKDIR /OI-wiki
EXPOSE ${LISTEN_PORT}
2018-11-04 00:15:07 +08:00
CMD ["/bin/bash"]