docker and docker tests

This commit is contained in:
2024-01-28 16:22:24 +03:00
parent 8f48352600
commit 5ced7acef8
12 changed files with 539 additions and 18 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
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 chmod a+x scripts/*.sh