JKJanosko commited on
Commit
eaaecec
·
unverified ·
1 Parent(s): a97ec20

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. MS2/Dockerfile +0 -19
MS2/Dockerfile DELETED
@@ -1,19 +0,0 @@
1
- FROM python:3.9
2
-
3
- RUN pip install -U pip
4
-
5
- WORKDIR /app
6
-
7
-
8
- RUN pip freeze > requirements.txt
9
-
10
- COPY requirements.txt /requirements.txt
11
-
12
- RUN pip install -r /requirements.txt
13
-
14
-
15
- EXPOSE 8501
16
-
17
- COPY . /app
18
-
19
- ENTRYPOINT ["python","-m","streamlit", "run", "app.py"]