diff --git a/Dockerfile b/Dockerfile index b427c31..c177d4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM python:3.9-alpine WORKDIR /musicfig COPY . /musicfig/ -RUN apt-get update && \ - apt-get -y install python-usb mpg123 +RUN apk update && \ + apk add mpg123 RUN pip3 install --upgrade pip wheel && pip3 install --upgrade -r requirements.txt