yidong2api / Dockerfile
dan92's picture
Create Dockerfile
5cb186c verified
raw
history blame contribute delete
165 Bytes
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"]