Projects STRLCPY maigret Commits 9bbca995
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    Dockerfile
    1  -FROM python:3.7-alpine
     1 +FROM python:3.7
    2 2  LABEL maintainer="Soxoj <[email protected]>"
    3 3   
    4 4  WORKDIR /app
    5 5   
    6 6  ADD requirements.txt .
    7 7   
    8  -RUN pip install --upgrade pip \
    9  -&& apk add --update --virtual .build-dependencies \
    10  - build-base \
     8 +RUN pip install --upgrade pip
     9 + 
     10 +RUN apt update -y
     11 + 
     12 +RUN apt install -y\
    11 13   gcc \
    12 14   musl-dev \
    13 15   libxml2 \
    14 16   libxml2-dev \
    15 17   libxslt-dev \
    16  - jpeg-dev \
    17 18  && YARL_NO_EXTENSIONS=1 python3 -m pip install maigret \
    18  -&& apk del .build-dependencies \
    19 19  && rm -rf /var/cache/apk/* \
    20 20   /tmp/* \
    21 21   /var/tmp/*
    skipped 5 lines
Please wait...
Page is in error, reload to recover