Browse Source

Dockerfile cleanup

pull/812/head
Sergey Kolesnikov 4 years ago
committed by GitHub
parent
commit
1df7cab04d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions
  1. 4
      app/Dockerfile

4
app/Dockerfile

@ -9,7 +9,9 @@ ENV PYTHONUNBUFFERED 1
# install psycopg2 dependencies # install psycopg2 dependencies
RUN apt-get update \ RUN apt-get update \
&& apt-get install --no-install-recommends -y python3-dev libpq-dev unixodbc-dev
&& apt-get install --no-install-recommends -y python3-dev libpq-dev unixodbc-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# install dependencies # install dependencies
RUN pip install --upgrade pip setuptools RUN pip install --upgrade pip setuptools

Loading…
Cancel
Save