first commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
FROM python:3.12-slim-bookworm
|
||||
|
||||
WORKDIR /app
|
||||
COPY requirements.txt /app/requirements.txt
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
COPY app.py /app/app.py
|
||||
|
||||
EXPOSE 80
|
||||
CMD ["python", "-u", "app.py"]
|
||||
Reference in New Issue
Block a user