Maybe a faster, more dependeable dockerfile?

This commit is contained in:
Dan 2021-02-11 12:44:34 -05:00
parent d0f30c4f9c
commit 044b82cb25
1 changed files with 13 additions and 4 deletions

View File

@ -1,15 +1,24 @@
FROM sartography/cr-connect-python-base
FROM python:3.8
RUN pip install pipenv
RUN useradd _gunicorn --no-create-home --user-group
RUN apt-get update && \
apt-get install -y -q \
gcc libssl-dev \
curl postgresql-client git-core \
gunicorn3 postgresql-client
WORKDIR /app
COPY Pipfile Pipfile.lock /app/
RUN cd /app && pipenv lock --keep-outdated --requirements > requirements.txt
RUN pip install -r /app/requirements.txt
RUN set -xe \
&& pipenv install --dev \
&& apt-get remove -y gcc python3-dev libssl-dev \
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/* \
&& useradd _gunicorn --no-create-home --user-group
&& rm -rf /var/lib/apt/lists/*
COPY . /app/
WORKDIR /app