We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 750f188 commit e606f86Copy full SHA for e606f86
Dockerfile
@@ -7,6 +7,15 @@ WORKDIR /app
7
# Copy the requirements.txt alone to re-install packages only if it has changed
8
ADD requirements.txt /app
9
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
19
# Install any needed packages specified in requirements.txt
20
RUN pip3 install --trusted-host pypi.python.org -r requirements.txt
21
0 commit comments