airsonic/Dockerfile

43 lines
1.0 KiB
Docker
Raw Normal View History

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