update package version

This commit is contained in:
Michael T. Kelbaugh
2020-09-28 08:17:17 -04:00
parent 3f06751504
commit a0c45b5f7b
2 changed files with 2 additions and 2 deletions

View File

@@ -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"]

View File

@@ -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 /.