btc_predictor / Dockerfile
alexray's picture
Update from Jenkins
16036bc
Raw
History Blame Contribute Delete
135 Bytes
FROM python:3.10-slim
WORKDIR /code
COPY . .
RUN pip install -r /code/requirements.txt
EXPOSE 7860
CMD ["python", "/code/app.py"]