Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update dockerfile
  • Loading branch information
fabidick22 committed Mar 24, 2020
commit e501f7c6190ee3933320d56ccb492adf198d93fb
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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/* && \
Expand Down