kab-hsf-test / Dockerfile
Bouaziz-bad
Add Docker Hello World
86f8c42
raw
history blame contribute delete
186 Bytes
FROM python:3.10-slim
# Install Flask
RUN pip install flask
# Copy your app
COPY app.py .
# Expose the port (optional, for clarity)
EXPOSE 7860
# Run the app
CMD ["python", "app.py"]