fixing up the dockerfile.

This commit is contained in:
Dan Funk 2020-09-17 12:00:38 -04:00
parent e7b118a0f1
commit c9faccafe6

View File

@ -4,13 +4,15 @@ WORKDIR /app
COPY Pipfile Pipfile.lock /app/
RUN set -xe \
&& pip install pipenv \
pip install pipenv \
&& apt-get update -q \
&& apt-get install -y -q \
gcc python3-dev libssl-dev \
curl postgresql-client git-core \
gunicorn3 postgresql-client \
&& pipenv install --dev
gunicorn3 postgresql-client
RUN set -xe \
pipenv install --dev \
&& apt-get remove -y gcc python3-dev libssl-dev \
&& apt-get autoremove -y \
&& apt-get clean -y \