GPS_Swiss_Docker / Dockerfile
Joey889's picture
Upload 3 files
ff78970 verified
raw
history blame contribute delete
121 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]