o4-mini / Dockerfile
hadadrjt's picture
o4-mini: Use the latest Python version.
a543c6b
raw
history blame contribute delete
436 Bytes
#
# SPDX-FileCopyrightText: Hadad <[email protected]>
# SPDX-License-Identifier: Apache-2.0
#
# Use a specific container image for the app
FROM python:latest
# Set the main working directory inside the container
WORKDIR /app
# Copy all files into the container
COPY . .
# Install all dependencies
RUN pip install -r requirements.txt
# Open the port so the app can be accessed
EXPOSE 7860
# Start the app
CMD ["python", "app.py"]