airsonic/Dockerfile

43 lines
1 KiB
Text
Raw Normal View History

2022-07-12 18:45:26 +02:00
FROM docker.io/alpine:3.16 AS builder
2021-05-08 14:26:27 +02:00
ENV VERSION=11.0.0-SNAPSHOT.20220625052932
2021-05-08 14:26:27 +02:00
RUN apk add --no-cache \
2022-02-15 12:22:17 +01:00
openjdk17-jdk \
2021-05-08 14:26:27 +02:00
maven \
git
2017-10-19 13:48:38 +02:00
2021-05-08 14:26:27 +02:00
RUN git clone https://github.com/airsonic-advanced/airsonic-advanced
2018-05-24 10:41:56 +02:00
2021-05-08 14:26:27 +02:00
WORKDIR /airsonic-advanced
RUN git checkout "$VERSION"
RUN mvn package -DskipTests
2018-05-24 10:41:56 +02:00
2021-05-08 14:26:27 +02:00
2022-07-12 18:45:26 +02:00
FROM docker.io/thallian/alpine-s6:3.16
2021-05-08 14:26:27 +02:00
ENV JAVA_OPTIONS=-Dfile.encoding=UTF-8 -Dsun.jnu.encoding=UTF-8
ENV AIRSONIC_DIR=/home/airsonic
RUN apk add --no-cache \
2021-05-08 14:48:09 +02:00
ca-certificates \
openssl \
2021-05-08 14:26:27 +02:00
ffmpeg \
flac \
opus \
2022-02-15 12:22:17 +01:00
lame \
openjdk17-jre-headless
2021-12-15 07:36:05 +01:00
2017-10-19 13:48:38 +02:00
RUN addgroup -g 2222 airsonic
2021-05-08 14:26:27 +02:00
RUN adduser -h "$AIRSONIC_DIR" -S -D -u 2222 -G airsonic airsonic
2017-10-19 13:48:38 +02:00
2021-05-08 14:36:55 +02:00
COPY --from=builder /airsonic-advanced/airsonic-main/target/airsonic.war "$AIRSONIC_DIR/airsonic.war"
2021-05-08 14:26:27 +02:00
RUN chown -R airsonic:airsonic "$AIRSONIC_DIR"
2017-10-19 13:48:38 +02:00
RUN mkdir -p $AIRSONIC_DIR/data/transcode
2021-05-08 14:26:27 +02:00
RUN ln -s /usr/bin/ffmpeg "$AIRSONIC_DIR/data/transcode/ffmpeg"
2017-10-19 13:48:38 +02:00
ADD /rootfs /
EXPOSE 8080
2021-05-08 14:26:27 +02:00
VOLUME "$AIRSONIC_DIR/data" "$AIRSONIC_DIR/music" "$AIRSONIC_DIR/playlists" "$AIRSONIC_DIR/podcasts"