Initial commit
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
FROM python:3.14-slim
|
||||
WORKDIR /app
|
||||
COPY . /app
|
||||
RUN pip install -r requirements.txt
|
||||
EXPOSE 5000
|
||||
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app", "--log-level", "warning"]
|
||||
Reference in New Issue
Block a user