From 9957e23677b7180e877df12fb439e4d909d96943 Mon Sep 17 00:00:00 2001 From: "Johnny Miller (ZA)" Date: Sat, 11 Mar 2023 14:52:17 +0800 Subject: [PATCH] revert($Docker): `apt-get update && apt-get install -y --no-install-recommends gcc` Revert "build($Docker): omit `apt-get update && apt-get install -y --no-install-recommends gcc`" This reverts commit 01aa5c7d94cbe27e15a24c38ced560183dfc8976. [skip ci] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0ef4b99..92ae8b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ FROM base AS python-deps # Install pipenv and compilation dependencies RUN pip install pipenv -# RUN apt-get update && apt-get install -y --no-install-recommends gcc +RUN apt-get update && apt-get install -y --no-install-recommends gcc # Install python dependencies in /.venv COPY Pipfile .