GPSAR_Docker / Dockerfile
Joey889's picture
Update Dockerfile
07a2b00 verified
raw
history blame contribute delete
165 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
COPY credentials.json /app/credentials.json
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]