From 6a9d97f7b6236ae5ed82773d97ecf54c78637c27 Mon Sep 17 00:00:00 2001 From: Jaspreet Sachdev Date: Fri, 14 May 2021 10:25:26 -0400 Subject: [PATCH] Fixed based on PR --- docker/Dockerfile | 2 +- docker/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 56ac6d5e0..6a8d112f1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.8 WORKDIR /wlan-testing -RUN apt update && apt install vim -y && rm -rf /var/lib/apt/lists/* +RUN apt update && rm -rf /var/lib/apt/lists/* RUN pip3 install pytest==6.2.2 bs4 paramiko xlsxwriter requests pandas influxdb scp allure-pytest RUN mkdir ~/.pip RUN echo "[global]" > ~/.pip/pip.conf diff --git a/docker/README.md b/docker/README.md index bc317a9ca..1b754a33e 100644 --- a/docker/README.md +++ b/docker/README.md @@ -4,7 +4,7 @@ From the root directory of this repository (wlan-testing) run the following command: ```bash -docker build -f ./docker/Dockerfile -t wlantest +docker build -f ./docker/Dockerfile -t wlantest . ``` This will produce a docker image, which you can verify by running docker images command.