4 changed files with 63 additions and 11 deletions
@ -0,0 +1,23 @@ |
|||||
|
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.14 |
||||
|
|
||||
|
# set version label |
||||
|
ARG BUILD_DATE |
||||
|
ARG TP_RELEASE |
||||
|
LABEL build_version="Version:- ${VERSION} Build-date:- ${BUILD_DATE} Platform: ${BUILDPLATFORM}" |
||||
|
LABEL maintainer="gilbn" |
||||
|
LABEL org.opencontainers.image.description DESCRIPTION |
||||
|
|
||||
|
RUN \ |
||||
|
echo " ## Installing packages ## " && \ |
||||
|
apk add --no-cache --virtual=build-dependencies \ |
||||
|
python3 && \ |
||||
|
echo "**** install theme.park ****" && \ |
||||
|
mkdir -p /app/themepark |
||||
|
|
||||
|
# copy local files |
||||
|
WORKDIR /app |
||||
|
COPY css/ /app/themepark/css/ |
||||
|
COPY resources/ /app/themepark/resources/ |
||||
|
COPY themes.py index.html CNAME /app/themepark/ |
||||
|
|
||||
|
COPY docker/root/ / |
@ -0,0 +1,23 @@ |
|||||
|
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.14 |
||||
|
|
||||
|
# set version label |
||||
|
ARG BUILD_DATE |
||||
|
ARG TP_RELEASE |
||||
|
LABEL build_version="Version:- ${VERSION} Build-date:- ${BUILD_DATE} Platform: ${BUILDPLATFORM}" |
||||
|
LABEL maintainer="gilbn" |
||||
|
LABEL org.opencontainers.image.description DESCRIPTION |
||||
|
|
||||
|
RUN \ |
||||
|
echo " ## Installing packages ## " && \ |
||||
|
apk add --no-cache --virtual=build-dependencies \ |
||||
|
python3 && \ |
||||
|
echo "**** install theme.park ****" && \ |
||||
|
mkdir -p /app/themepark |
||||
|
|
||||
|
# copy local files |
||||
|
WORKDIR /app |
||||
|
COPY css/ /app/themepark/css/ |
||||
|
COPY resources/ /app/themepark/resources/ |
||||
|
COPY themes.py index.html CNAME /app/themepark/ |
||||
|
|
||||
|
COPY docker/root/ / |
Loading…
Reference in new issue