Ilkinism commited on
Commit
dfb564d
·
verified ·
1 Parent(s): d7d17d2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -2,11 +2,18 @@ FROM python:3.9-slim
2
 
3
  WORKDIR /app
4
 
 
 
 
 
 
 
5
  RUN apt-get update && apt-get install -y \
6
  build-essential \
7
  curl \
8
  software-properties-common \
9
  git \
 
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
  COPY requirements.txt ./
 
2
 
3
  WORKDIR /app
4
 
5
+ # RUN apt-get update && apt-get install -y \
6
+ # build-essential \
7
+ # curl \
8
+ # software-properties-common \
9
+ # git \
10
+ # && rm -rf /var/lib/apt/lists/*
11
  RUN apt-get update && apt-get install -y \
12
  build-essential \
13
  curl \
14
  software-properties-common \
15
  git \
16
+ espeak-ng \
17
  && rm -rf /var/lib/apt/lists/*
18
 
19
  COPY requirements.txt ./