Docker testing

This commit is contained in:
2024-11-23 12:01:28 -07:00
parent 58f913d3ed
commit 845438960b
5 changed files with 79 additions and 41 deletions

8
composetest/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
# syntax=docker/dockerfile:1
FROM python:3.10-slim
WORKDIR /code
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
EXPOSE 5000
COPY . .
CMD ["python", "app.py"]