1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-07-04 19:21:31 +02:00
theme.park/linux-amd64.Dockerfile

24 lines
663 B
Docker
Raw Permalink Normal View History

2024-04-20 10:31:14 +02:00
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.19
2022-03-22 10:05:36 +01:00
# set version label
ARG BUILD_DATE
ARG TP_RELEASE
2022-04-14 19:48:15 +02:00
ARG BUILD_ARCHITECTURE
LABEL build_version="Version:- ${TP_RELEASE} Build-date:- ${BUILD_DATE} Platform: ${BUILD_ARCHITECTURE}"
2022-03-22 10:05:36 +01:00
LABEL maintainer="gilbn"
RUN \
echo " ## Installing packages ## " && \
2022-04-13 23:39:07 +02:00
apk add --no-cache --virtual=runtime-dependencies \
2022-03-29 21:30:10 +02:00
python3 && \
2022-03-22 10:05:36 +01:00
echo "**** install theme.park ****" && \
mkdir -p /app/themepark
# copy local files
WORKDIR /app
COPY css/ /app/themepark/css/
COPY resources/ /app/themepark/resources/
COPY docker-mods/ /app/themepark/docker-mods/
2022-03-22 21:22:10 +01:00
COPY themes.py index.html CNAME /app/themepark/
2022-03-22 10:05:36 +01:00
COPY docker/root/ /