From a0c45b5f7b3096a028b3fcc9d915489717b43667 Mon Sep 17 00:00:00 2001 From: "Michael T. Kelbaugh" Date: Mon, 28 Sep 2020 08:17:17 -0400 Subject: [PATCH] update package version --- broker/Dockerfile | 2 +- build/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/broker/Dockerfile b/broker/Dockerfile index 3291287..35d5732 100644 --- a/broker/Dockerfile +++ b/broker/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:18.04 -RUN apt-get update && apt-get install -y python3-dev=3.6.7-1~18.04 python3-pip=9.0.1-2.3~ubuntu1.18.04.1 && apt-get -qy autoremove && apt-get clean && rm -r /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y python3-dev=3.6.7-1~18.04 python3-pip=9.0.1-2.3~ubuntu1.18.04.2 && apt-get -qy autoremove && apt-get clean && rm -r /var/lib/apt/lists/* COPY ./requirements.txt / RUN pip3 install -r /requirements.txt CMD ["python3", "/opt/handler.py"] diff --git a/build/Dockerfile b/build/Dockerfile index 162ffa3..6c518f1 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:18.04 -RUN apt-get update && apt-get install -y python3-dev=3.6.7-1~18.04 python3-pip=9.0.1-2.3~ubuntu1.18.04.1 && apt-get -qy autoremove && apt-get clean && rm -r /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y python3-dev=3.6.7-1~18.04 python3-pip=9.0.1-2.3~ubuntu1.18.04.2 && apt-get -qy autoremove && apt-get clean && rm -r /var/lib/apt/lists/* COPY ./build/requirements.txt / RUN pip3 install -r /requirements.txt COPY ./outer_wrapper.py /.