Matze420 commited on
Commit
eff2a54
1 Parent(s): 7f03e5a

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -9
Dockerfile DELETED
@@ -1,9 +0,0 @@
1
- FROM python:3.9
2
- WORKDIR /app
3
- COPY requirements.txt ./requirements.txt
4
- RUN pip install -r requirements.txt
5
- RUN mkdir -p /code/huggingface_dataset #Dateien werden im Hugging Face-Dataset unter /code/huggingface_dataset im Docker-Container gespeichert.
6
- EXPOSE 8501
7
- COPY . /app
8
- ENTRYPOINT ["streamlit", "run"]
9
- CMD ["landing.py", "--server.port", "7860"]