File size: 232 Bytes
ec6f0c5
 
 
4d9baf6
ec6f0c5
 
 
 
1
2
3
4
5
6
7
8
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"]