mirror of
https://codeberg.org/hyperreal/archive-fandom-wiki
synced 2024-11-01 16:43:07 +01:00
22 lines
466 B
Plaintext
22 lines
466 B
Plaintext
|
FROM python:alpine as builder
|
||
|
|
||
|
ENV PYTHONFAULTHANDLER=1 \
|
||
|
PYTHONUNBUFFERED=1 \
|
||
|
PYTHONHASHSEED=random \
|
||
|
PIP_NO_CACHE_DIR=off \
|
||
|
PIP_DISABLE_PIP_VERSION_CHECK=on \
|
||
|
PIP_DEFAULT_TIMEOUT=100
|
||
|
|
||
|
RUN python -m venv /venv
|
||
|
COPY requirements.txt ./
|
||
|
RUN /venv/bin/pip install -r /requirements.txt
|
||
|
|
||
|
FROM builder as final
|
||
|
|
||
|
COPY --from=builder /venv /venv
|
||
|
COPY archive-fandom-wiki entrypoint.sh ./
|
||
|
RUN mkdir /output
|
||
|
WORKDIR /output
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|