Files
docker-python/Dockerfile
T

16 lines
319 B
Docker
Raw Normal View History

2020-08-12 23:00:48 -04:00
FROM python:3.8-slim
2020-06-16 14:05:12 -04:00
WORKDIR /app
COPY Pipfile Pipfile.lock /app/
RUN set -xe \
&& pip install pipenv \
&& apt-get update -q \
&& apt-get install -y -q \
gcc python3-dev libssl-dev \
curl postgresql-client git-core \
2020-06-16 14:05:12 -04:00
gunicorn3 postgresql-client \
&& pipenv install --dev
2020-06-16 21:51:44 -04:00
WORKDIR /app