From 0f777cf7d0545f0067db3d778769750f819a72e4 Mon Sep 17 00:00:00 2001 From: Sherif Soliman Date: Mon, 20 Nov 2023 20:25:58 -0800 Subject: [PATCH] Update Dockerfiles per PR comments Testing: re-created the images on the host for the self-hosted runner and re-ran the onprem tests. --- docker/py311/Dockerfile | 8 ++++---- docker/py39/Dockerfile | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/py311/Dockerfile b/docker/py311/Dockerfile index 14bd1278..0eaac054 100644 --- a/docker/py311/Dockerfile +++ b/docker/py311/Dockerfile @@ -3,8 +3,8 @@ FROM python:3.11 RUN apt-get update \ && apt-get install -y \ hdf5-tools \ - curl + curl \ + git-lfs \ + && rm -rf /var/lib/apt/lists/* -RUN curl https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash - -RUN apt-get install git-lfs +RUN curl https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash \ No newline at end of file diff --git a/docker/py39/Dockerfile b/docker/py39/Dockerfile index 16436192..c52d2229 100644 --- a/docker/py39/Dockerfile +++ b/docker/py39/Dockerfile @@ -3,8 +3,8 @@ FROM python:3.9 RUN apt-get update \ && apt-get install -y \ hdf5-tools \ - curl + curl \ + git-lfs \ + && rm -rf /var/lib/apt/lists/* -RUN curl https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash - -RUN apt-get install git-lfs \ No newline at end of file +RUN curl https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash \ No newline at end of file