memex-in commited on
Commit
4b7edac
·
verified ·
1 Parent(s): d4aae7e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -1,7 +1,6 @@
1
  FROM python:3.9-slim
2
 
3
  WORKDIR /app
4
- RUN ls
5
 
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
@@ -13,8 +12,10 @@ RUN apt update
13
  RUN apt install pkg-config cmake libcairo2-dev libpangocairo-1.0-0 python3-cffi python3-cairocffi libpango1.0-dev -y
14
  RUN apt install dpkg -y
15
  RUN dpkg -l | grep libpango1.0-dev
 
16
  COPY requirements.txt ./
17
 
 
18
  RUN pip3 install -r requirements.txt
19
 
20
  EXPOSE 8501
 
1
  FROM python:3.9-slim
2
 
3
  WORKDIR /app
 
4
 
5
  RUN apt-get update && apt-get install -y \
6
  build-essential \
 
12
  RUN apt install pkg-config cmake libcairo2-dev libpangocairo-1.0-0 python3-cffi python3-cairocffi libpango1.0-dev -y
13
  RUN apt install dpkg -y
14
  RUN dpkg -l | grep libpango1.0-dev
15
+ RUN ls
16
  COPY requirements.txt ./
17
 
18
+
19
  RUN pip3 install -r requirements.txt
20
 
21
  EXPOSE 8501