From e501f7c6190ee3933320d56ccb492adf198d93fb Mon Sep 17 00:00:00 2001 From: fabidick22 Date: Tue, 24 Mar 2020 15:49:28 -0500 Subject: [PATCH] Update dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6c65320d..116ed5ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ FROM python:3.8-alpine -ARG buildDeps='gcc g++ unixodbc-dev' +ARG buildDeps='g++' WORKDIR /usr/src/app COPY . . RUN apk update \ - && apk add --no-cache $buildDeps \ + && apk add --no-cache $buildDeps gcc unixodbc-dev \ && pip3 install --no-cache-dir -r requirements/prod.txt \ && apk del $buildDeps \ && rm -rfv /root/.cache/pip/* && \