Niansuh commited on
Commit
a4549e6
·
verified ·
1 Parent(s): 1a18ce5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -12,11 +12,9 @@ WORKDIR /app
12
  RUN apt-get update && apt-get install -y \
13
  build-essential \
14
  libssl-dev \
 
15
  && rm -rf /var/lib/apt/lists/*
16
 
17
- # Install mysqlclient dependencies if using mysqlclient instead of pymysql
18
- # Since we're using pymysql, no additional system dependencies are required
19
-
20
  # Copy the requirements file into the container
21
  COPY requirements.txt .
22
 
 
12
  RUN apt-get update && apt-get install -y \
13
  build-essential \
14
  libssl-dev \
15
+ libffi-dev \
16
  && rm -rf /var/lib/apt/lists/*
17
 
 
 
 
18
  # Copy the requirements file into the container
19
  COPY requirements.txt .
20