diff --git a/Dockerfile b/Dockerfile index 0c9323ab6de71fb23ec3634a43103fadcf064951..14a3f6538538eba000ac29c6117be87e96169e49 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