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 777f677 commit e501f7cCopy full SHA for e501f7c
Dockerfile
@@ -1,13 +1,13 @@
1
FROM python:3.8-alpine
2
3
-ARG buildDeps='gcc g++ unixodbc-dev'
+ARG buildDeps='g++'
4
5
WORKDIR /usr/src/app
6
7
COPY . .
8
9
RUN apk update \
10
- && apk add --no-cache $buildDeps \
+ && apk add --no-cache $buildDeps gcc unixodbc-dev \
11
&& pip3 install --no-cache-dir -r requirements/prod.txt \
12
&& apk del $buildDeps \
13
&& rm -rfv /root/.cache/pip/* && \
0 commit comments