driver-yidong-ds / Dockerfile
devin15's picture
Add Dockerfile and configure app port to 8080
46912f9 verified
raw
history blame contribute delete
164 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"]