11 lines
326 B
Docker
11 lines
326 B
Docker
FROM arm64v8/eclipse-temurin:11-jre
|
|
WORKDIR /app
|
|
RUN mkdir -p cache
|
|
VOLUME /app/cache
|
|
|
|
RUN apt-get update && apt-get install alsa-base alsa-utils -y && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN wget https://github.com/librespot-org/librespot-java/releases/download/v1.6.2/librespot-api-1.6.2.jar
|
|
|
|
CMD java -jar librespot-api-1.6.2.jar
|