-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dockerfile
44 lines (29 loc) · 890 Bytes
/
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
FROM python:3.11-slim as base
RUN apt-get update
RUN apt-get install -y git
RUN apt-get install unzip
ENV PYTHONFAULTHANDLER=1 \
PYTHONHASHSEED=random \
PYTHONUNBUFFERED=1
WORKDIR /app
FROM base as builder
RUN apt-get update
RUN apt-get install -y gdal-bin libgdal-dev g++
# add unzip
RUN apt-get install unzip
ENV PIP_DEFAULT_TIMEOUT=100 \
PIP_DISABLE_PIP_VERSION_CHECK=1 \
PIP_NO_CACHE_DIR=1 \
POETRY_VERSION=1.8.1
RUN pip install "poetry==$POETRY_VERSION"
RUN python -m venv /venv
COPY pyproject.toml poetry.lock README.md .
RUN . /venv/bin/activate && poetry install --only main --no-root
COPY india_forecast_app ./india_forecast_app
RUN . /venv/bin/activate && poetry build
FROM base as final
ENV PATH="/venv/bin:$PATH"
COPY --from=builder /venv /venv
COPY --from=builder /app/dist .
RUN . /venv/bin/activate && pip install *.whl
ENTRYPOINT ["app", "--write-to-db"]