Spaces:
Running
Running
MVPilgrim
commited on
Commit
·
8be5d8a
1
Parent(s):
aa1d20c
streamlit
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -1,6 +1,10 @@
|
|
1 |
|
2 |
FROM python:3.9-slim
|
3 |
|
|
|
|
|
|
|
|
|
4 |
WORKDIR /app
|
5 |
|
6 |
RUN apt-get update && apt-get install -y \
|
|
|
1 |
|
2 |
FROM python:3.9-slim
|
3 |
|
4 |
+
COPY requirements.txt /app/requirements.txt
|
5 |
+
COPY Dockerfile /app/Dockerfile
|
6 |
+
COPY semsearchDbgUI.py /app/semsearchDbgUI.py
|
7 |
+
|
8 |
WORKDIR /app
|
9 |
|
10 |
RUN apt-get update && apt-get install -y \
|