mirror of
https://github.com/linuxserver/docker-limnoria.git
synced 2026-02-20 02:38:05 +08:00
51 lines
1.4 KiB
Docker
51 lines
1.4 KiB
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.21
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
ARG LIMNORIA_RELEASE
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="nemchik"
|
|
|
|
RUN \
|
|
echo "**** install build packages ****" && \
|
|
apk add --no-cache --virtual=build-dependencies \
|
|
build-base \
|
|
cargo \
|
|
libffi-dev \
|
|
openssl-dev \
|
|
python3-dev && \
|
|
echo "**** install runtime packages ****" && \
|
|
apk add --no-cache \
|
|
gnupg \
|
|
python3 && \
|
|
echo "**** install app ****" && \
|
|
if [ -z ${LIMNORIA_VERSION+x} ]; then \
|
|
LIMNORIA_VERSION=$(curl -sL https://pypi.python.org/pypi/limnoria/json |jq -r '. | .info.version'); \
|
|
fi && \
|
|
python3 -m venv /lsiopy && \
|
|
pip install -U --no-cache-dir \
|
|
pip \
|
|
wheel && \
|
|
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.21/ \
|
|
-r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.txt && \
|
|
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.21/ \
|
|
limnoria=="${LIMNORIA_VERSION}" && \
|
|
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
|
echo "**** cleanup ****" && \
|
|
apk del --purge \
|
|
build-dependencies && \
|
|
rm -rf \
|
|
/tmp/* \
|
|
$HOME/.cache \
|
|
$HOME/.cargo
|
|
|
|
# copy local files
|
|
COPY root/ /
|
|
|
|
# ports and volumes
|
|
EXPOSE 8080
|
|
VOLUME /config
|