File size: 176 Bytes
8a78bd2
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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"]