Spaces:
Sleeping
Sleeping
FROM python:3.13-slim | |
WORKDIR /app | |
COPY . /app/ | |
RUN pip install --no-cache-dir flask requests && \ | |
chmod 777 -R /app | |
EXPOSE 8080 | |
CMD ["python", "server.py"] |