Spaces:
Runtime error
Runtime error
File size: 309 Bytes
5109c6f 2ddd5ee d90c277 5109c6f c9bf849 d90c277 5109c6f d90c277 5109c6f d90c277 5109c6f c9bf849 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# 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"] |