File size: 349 Bytes
74708db
 
 
 
 
 
 
 
af3ae88
1
2
3
4
5
6
7
8
9
FROM python:3.9
WORKDIR /app
COPY requirements.txt ./requirements.txt
RUN pip install -r requirements.txt
RUN mkdir -p /code/huggingface_dataset #Dateien werden im Hugging Face-Dataset unter /code/huggingface_dataset im Docker-Container gespeichert.
EXPOSE 8501
COPY . /app
ENTRYPOINT ["streamlit", "run"]
CMD ["landing.py", "--server.port", "7860"]