fixed docker files (included libuv1-dev)

pull/39/head
Ciro 2022-06-02 16:57:27 -03:00
rodzic 9f4bb0de72
commit 47880cf9e9
3 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -4,6 +4,8 @@ WORKDIR /usr/src/app
COPY requirements.txt ./
RUN apt-get update
RUN apt install libuv1-dev -y
RUN pip install --no-cache-dir -r requirements.txt
COPY . .

Wyświetl plik

@ -4,7 +4,7 @@ WORKDIR /usr/src/app
COPY requirements.txt ./
RUN apk add --no-cache git openssl-dev libffi-dev build-base python3-dev
RUN apk add --no-cache libuv-dev git openssl-dev libffi-dev build-base python3-dev
RUN pip install --no-cache-dir -r requirements.txt

Wyświetl plik

@ -4,6 +4,8 @@ WORKDIR /usr/src/app
COPY requirements.txt ./
RUN apt-get update
RUN apt install libuv1-dev -y
RUN pip install --no-cache-dir -r requirements.txt
COPY . .