Remove conditions to loadgenerator Dockerfile that are not reproducable

This commit is contained in:
David Mailhot 2020-10-14 13:50:26 -07:00
parent 963a05ff61
commit 338ffe0dc1

View file

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM python:3.7.2-slim as base
FROM python:3-slim as base
FROM base as builder
@ -22,7 +22,6 @@ RUN apt-get -qq update \
COPY requirements.txt .
RUN pip install --upgrade pip
RUN pip install --prefix="/install" -r requirements.txt
FROM base