Very Initial MVP
There is so much more to do, but I think it is time to commit this to VCS
This commit is contained in:
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM python:3.11-bookworm as base
|
||||
WORKDIR /app
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
FROM base as app
|
||||
COPY . .
|
||||
|
||||
CMD ["python", "main.py"]
|
||||
Reference in New Issue
Block a user