This commit is contained in:
2024-04-22 04:00:23 +03:00
commit b25f89e777
30 changed files with 1699 additions and 0 deletions

23
docker/tests/Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM python:3.10-slim
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
RUN pip install --upgrade pip
RUN pip install poetry
RUN poetry config virtualenvs.create false
RUN mkdir -p /usr/src/flask-webhook/flask_demo_api
RUN mkdir -p /usr/src/flask-webhook/tests
WORKDIR /usr/src/flask-webhook
COPY ./poetry.lock .
COPY ./pyproject.toml .
RUN poetry install