-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
41 lines (27 loc) · 908 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
FROM python:3.11-slim
WORKDIR /tg-bot-movieclub
ARG PROD
ARG TOKEN
ARG DATABASE
ARG LEVEL
ARG ENV_FILE
ENV PROD=${PROD} \
TOKEN=${TOKEN} \
DATABASE=${DATABASE} \
LEVEL=${LEVEL} \
ENV_FILE=${ENV_FILE}
RUN ["python", "-m", "pip", "install", "pip", "--upgrade"]
RUN ["python", "-m", "pip", "install", "poetry", "--ignore-installed"]
COPY pyproject.toml poetry.lock /tg-bot-movieclub/
RUN ["poetry", "config", "virtualenvs.create", "false"]
RUN if [ "$PROD" = "1" ]; then \
poetry install --no-ansi --no-interaction --no-root --no-dev; \
else \
poetry install --no-ansi --no-interaction --no-root; \
fi
COPY ./test /tg-bot-movieclub/test/
RUN if [ "$PROD" = "1" ]; then rm -rf /tg-bot-movieclub/test ; fi
COPY ./src /tg-bot-movieclub/src/
RUN ["poetry", "run", "migration"]
RUN ["poetry", "run", "seeder"]
ENTRYPOINT ["poetry", "run", "python", "-m", "src.main"]