From b5caff9683cb2182a19070116a28c376a74d5d40 Mon Sep 17 00:00:00 2001
From: Fabian Schindler <fabian.schindler.strauss@gmail.com>
Date: Fri, 12 Aug 2022 11:54:50 +0200
Subject: [PATCH] Using apt-get instead of unstable apt command in dockerfile

---
 Dockerfile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 7008c20..5f70927 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -40,11 +40,11 @@ WORKDIR /opt/core
 
 COPY requirements.txt .
 
-RUN apt update && \
-    apt install --no-install-recommends -y \
-    libpq-dev wait-for-it && \
-    apt autoremove -y && \
-    apt clean && \
+RUN apt-get update && \
+    apt-get install --no-install-recommends -y \
+        libpq-dev wait-for-it && \
+    apt-get autoremove -y && \
+    apt-get clean && \
     rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
     pip3 install --no-cache-dir -r requirements.txt
 
-- 
GitLab