Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- Dockerfile +2 -1
- requirements.txt +1 -1
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM python:3.
|
2 |
|
3 |
|
4 |
RUN apt-get update && apt-get install -y \
|
@@ -13,6 +13,7 @@ COPY requirements.txt /app/requirements.txt
|
|
13 |
COPY pages /app/pages
|
14 |
COPY run.py /app/run.py
|
15 |
|
|
|
16 |
RUN pip3 install -r requirements.txt
|
17 |
|
18 |
EXPOSE 8501
|
|
|
1 |
+
FROM python:3.12-slim-bullseye
|
2 |
|
3 |
|
4 |
RUN apt-get update && apt-get install -y \
|
|
|
13 |
COPY pages /app/pages
|
14 |
COPY run.py /app/run.py
|
15 |
|
16 |
+
RUN pip3 install --upgrade pip
|
17 |
RUN pip3 install -r requirements.txt
|
18 |
|
19 |
EXPOSE 8501
|
requirements.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
myoquant
|
2 |
streamlit
|
3 |
pandas
|
4 |
numpy
|
|
|
1 |
+
myoquant>=0.3.6
|
2 |
streamlit
|
3 |
pandas
|
4 |
numpy
|