Spaces:
Runtime error
Runtime error
# Use Official Python Image | |
FROM python:3.10 | |
# Set Working Directory | |
WORKDIR /app | |
# Copy Files | |
COPY requirements.txt /app/requirements.txt | |
COPY app.py /app/app.py | |
COPY config.json /app/config.json | |
# Install Dependencies | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Run App | |
CMD ["python", "app.py"] |