Dockerfile #1

Merged
blakeridgway_placeholder_93sn4x merged 5 commits from docker into main 2025-01-05 23:30:18 +00:00
Showing only changes of commit 5e19f9a789 - Show all commits

14
Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5000
ENV FLASK_APP=server.py
ENV FLASK_RUN_HOST=0.0.0.0
CMD ["flask", "run"]