rjl-dora / Dockerfile
dongsiqie's picture
Update Dockerfile
4d9baf6
raw
history blame contribute delete
232 Bytes
FROM python:3.11
RUN apt update
RUN apt install git
RUN git clone https://github.com/zhile-io/pandora-cloud-serverless.git
WORKDIR "pandora-cloud-serverless"
RUN pip install -r requirements.txt
EXPOSE 8018
CMD ["python", "main.py"]