diff options
author | terminaldweller <thabogre@gmail.com> | 2022-11-23 10:29:47 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-11-23 10:29:47 +0000 |
commit | ce34198e8dd8ce259695cdb510bb11f10a62376b (patch) | |
tree | 918b36b6dadfb370677150c86bb0174843a4fa9d /Dockerfile | |
parent | update (diff) | |
download | magni-ce34198e8dd8ce259695cdb510bb11f10a62376b.tar.gz magni-ce34198e8dd8ce259695cdb510bb11f10a62376b.zip |
WIP
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f33b3fc --- /dev/null +++ b/Dockerfile @@ -0,0 +1,26 @@ +FROM python:3.11.0-slim-buster as python-base +ENV PYTHONUNBUFFERED=1 \ + PYTHONDONTWRITEBYTECODE=1 \ + PIP_NO_CACHE_DIR=off \ + PIP_DISABLE_PIP_VERSION_CHECK=on \ + PIP_DEFAULT_TIMEOUT=100 \ + POETRY_HOME="/poetry" \ + POETRY_VIRTUALENVS_IN_PROJECT=true \ + POETRY_NO_INTERACTION=1 \ + PYSETUP_PATH="/devourer" \ + VENV_PATH="/devourer/.venv" +ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH" + +FROM python-base as builder-base +ENV POETRY_VERSION=1.2.2 +RUN apt update && apt install -y --no-install-recommends curl build-essential +RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python +WORKDIR $PYSETUP_PATH +COPY ./pyproject.toml ./ +RUN poetry install --no-dev + +FROM python-base as production +COPY --from=builder-base $VENV_PATH $VENV_PATH +COPY ./magni.py $PYSETUP_PATH/magni.py +WORKDIR $PYSETUP_PATH +ENTRYPOINT $PYSETUP_PATH/magni.py |