Skip to content

Commit e606f86

Browse files
committed
Updating dockerfile
1 parent 750f188 commit e606f86

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ WORKDIR /app
77
# Copy the requirements.txt alone to re-install packages only if it has changed
88
ADD requirements.txt /app
99

10+
RUN apt-get update && apt-get install -y \
11+
unixodbc-dev \
12+
gcc \
13+
g++ \
14+
gnupg \
15+
curl \
16+
&& rm -rf /var/lib/apt/lists/*
17+
18+
1019
# Install any needed packages specified in requirements.txt
1120
RUN pip3 install --trusted-host pypi.python.org -r requirements.txt
1221

0 commit comments

Comments
 (0)