-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
92 lines (73 loc) · 2.71 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
FROM python:3.10-slim-bullseye 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="/opt/poetry" \
POETRY_VIRTUALENVS_IN_PROJECT=true \
POETRY_NO_INTERACTION=1 \
PYSETUP_PATH="/opt/pysetup" \
VENV_PATH="/opt/pysetup/.venv"
ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH"
FROM python-base AS builder-base
RUN buildDeps="build-essential" \
&& apt-get update \
&& apt-get install --no-install-recommends -y \
curl \
vim \
netcat \
&& apt-get install -y --no-install-recommends $buildDeps \
&& rm -rf /var/lib/apt/lists/*
# Install Poetry - respects $POETRY_VERSION & $POETRY_HOME
ENV POETRY_VERSION=1.3.2
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=${POETRY_HOME} python3 - --version ${POETRY_VERSION} && \
chmod a+x /opt/poetry/bin/poetry
WORKDIR $PYSETUP_PATH
COPY poetry.lock ./pyproject.toml ./
RUN poetry install
FROM python-base as development
ENV FASTAPI_ENV=development
COPY --from=builder-base $POETRY_HOME $POETRY_HOME
COPY --from=builder-base $PYSETUP_PATH $PYSETUP_PATH
WORKDIR $PYSETUP_PATH
RUN poetry lock --no-update
RUN poetry install
WORKDIR /masternode
EXPOSE 5000
CMD ["export", "PYTHONPATH=$PYTHONPATH:$(pwd)"]
CMD ["uvicorn", "--reload", "--host=0.0.0.0", "--port=5000", "MasterNode.main:app", "--proxy-headers","--workers", "1"]
COPY . masternode/
# 'lint' stage runs black and isort
# running in check mode means build will fail if any linting errors occur
#FROM development AS lint
#RUN black --config ./pyproject.toml
#RUN #isort --settings-path ./pyproject.toml --recursive --check-only
#CMD ["tail", "-f", "/dev/null"]
# 'test' stage runs our unit tests with pytest and
# coverage. Build will fail if test coverage is under 95%
#FROM development AS test
#RUN coverage run --rcfile ./pyproject.toml -m pytest ./tests
#RUN coverage report --fail-under 95
#
## 'production' stage uses the clean 'python-base' stage and copyies
## in only our runtime deps that were installed in the 'builder-base'
#FROM python-base AS production
#ENV FASTAPI_ENV=production
#
#COPY --from=builder-base $VENV_PATH $VENV_PATH
#COPY gunicorn_conf.py /gunicorn_conf.py
#
#COPY docker-entrypoint.sh /docker-entrypoint.sh
#RUN chmod +x /docker-entrypoint.sh
# Create user with the name poetry
#RUN groupadd -g 1500 poetry && \
# useradd -m -u 1500 -g poetry poetry
#
#COPY --chown=poetry:poetry ./app /app
#USER poetry
#WORKDIR /app
#
##ENTRYPOINT /docker-entrypoint.sh $0 $@
#CMD [ "gunicorn", "--worker-class uvicorn.workers.UvicornWorker", "--config /gunicorn_conf.py", "MasterNode.main:app"]