Files

19 lines
311 B
Docker
Raw Permalink Normal View History

FROM python:3.11.6-slim
2020-06-16 14:05:12 -04:00
WORKDIR /app
# pulled out:
# python3-dev \
# postgresql-client \
RUN set -xe \
&& pip install pipenv==2023.10.3 poetry==1.6.1 \
&& apt-get update -q \
&& apt-get install -y -q \
2022-11-09 13:07:35 -05:00
gcc \
libssl-dev \
curl \
git-core \
gunicorn3
2020-06-16 14:05:12 -04:00
2020-06-16 21:51:44 -04:00
WORKDIR /app