Skip to content

Commit e501f7c

Browse files
committed
Update dockerfile
1 parent 777f677 commit e501f7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
FROM python:3.8-alpine
22

3-
ARG buildDeps='gcc g++ unixodbc-dev'
3+
ARG buildDeps='g++'
44

55
WORKDIR /usr/src/app
66

77
COPY . .
88

99
RUN apk update \
10-
&& apk add --no-cache $buildDeps \
10+
&& apk add --no-cache $buildDeps gcc unixodbc-dev \
1111
&& pip3 install --no-cache-dir -r requirements/prod.txt \
1212
&& apk del $buildDeps \
1313
&& rm -rfv /root/.cache/pip/* && \

0 commit comments

Comments
 (0)