Dockerfile 344 B

123456789101112131415
  1. FROM python:3.10
  2. WORKDIR /src
  3. COPY ./requirements.txt ./src/requirements.txt
  4. RUN set -eux \
  5. && apk add --no-cache --virtual .build-deps build-base \
  6. libressl-dev libffi-dev gcc musl-dev python3-dev \
  7. postgresql-dev \
  8. && pip install --upgrade pip setuptools wheel \
  9. && pip install -r /src/requirements.txt \
  10. COPY . /src/