File size: 150 Bytes
5a29263
 
 
 
 
 
 
1
2
3
4
5
6
7
8
FROM python:3.9 
WORKDIR /app 
COPY . /app 
RUN pip install -r requirements.txt 
RUN chmod +x start.sh 
EXPOSE 8000 
CMD ["bash", "start.sh"]