Setup Docker image and connection for testing

This commit is contained in:
2023-05-12 16:27:46 -04:00
commit 1e1119837e
4 changed files with 22 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3.11.3
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "./main.py"]