From c621e0730f8677f56c5b6e0f081860642a3606a8 Mon Sep 17 00:00:00 2001
From: David Trattnig <david.trattnig@o94.at>
Date: Tue, 8 Dec 2020 20:52:56 +0100
Subject: [PATCH] Python 3.9 docker dependency. #61

---
 Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 0c9323ab..14a3f653 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -12,11 +12,11 @@ RUN apt-get update && apt-get -y install \
       build-essential \
       libmariadbclient-dev \
       default-libmysqlclient-dev \
-      python3.8 python3-pip
+      python3.9-dev python3-pip
 
 # Print Debug Information
 
-RUN echo $(python3.8 -V)
+RUN echo $(python3 -V)
 
 # Setup Engine
 
@@ -26,7 +26,7 @@ RUN mkdir -p /var/audio
 RUN mkdir -p /var/audio/source
 COPY . /srv
 WORKDIR /srv
-RUN python3.8 $(which pip3) install -r requirements.txt
+RUN pip3 install -r requirements.txt
 
 # Start the Engine
 
-- 
GitLab