FIXDOCKER и typehint в тестах

This commit is contained in:
2024-01-30 23:11:40 +03:00
parent f61cb3a2ee
commit ead24d9f28
13 changed files with 130 additions and 77 deletions

View File

@@ -1,15 +1,13 @@
FROM python:3.10-slim
RUN mkdir /fastfood
WORKDIR /fastfood
COPY . .
RUN pip install poetry
RUN poetry config virtualenvs.create false
RUN poetry install
RUN mkdir -p /usr/src/fastfood
RUN chmod a+x scripts/*.sh
WORKDIR /usr/src/fastfood
COPY . .
RUN poetry install