Skip to content
Snippets Groups Projects
Commit c621e073 authored by David Trattnig's avatar David Trattnig
Browse files

Python 3.9 docker dependency. #61

parent 0332deed
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment