corentinm7 commited on
Commit
ff96b12
·
verified ·
1 Parent(s): 2ea7747

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. Dockerfile +2 -1
  2. requirements.txt +1 -1
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM python:3.13-slim-bullseye
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