dont need to install python-pip in the image cuase its already got it

This commit is contained in:
Luke Robles 2021-01-06 11:56:11 -08:00
parent 6656a3ecc1
commit 3ebc8e6ed2
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
FROM python:3.8 as build
RUN apt-get update && apt-get install -y gcc python-pip
RUN apt-get update && apt-get install -y gcc
ADD app/requirements.txt /requirements.txt
RUN pip install -r requirements.txt

View File

@ -1,5 +1,5 @@
FROM python:3.8 as build
RUN apt-get update && apt-get install -y gcc python-pip
RUN apt-get update && apt-get install -y gcc
ADD app/requirements.txt /requirements.txt
RUN pip install -r requirements.txt