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

This commit is contained in:
ein 2021-01-06 11:56:11 -08:00
parent d3e79d2097
commit c2c20cb1a0
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