websoft9/docker/apphub/Dockerfile

47 lines
1.6 KiB
Docker
Raw Normal View History

2023-09-19 14:32:20 +08:00
FROM python:3.10-bullseye AS buildstage
2023-02-21 14:21:53 +08:00
LABEL maintainer="Websoft9<help@websoft9.com>"
2023-09-19 18:53:05 +08:00
LABEL version="0.0.1"
2023-03-24 15:32:38 +08:00
2023-09-19 12:54:20 +08:00
ENV LIBRARY_VERSION=v0.5.4
2023-09-18 17:13:15 +08:00
2023-09-19 12:54:20 +08:00
# Prepare library
RUN wget https://github.com/Websoft9/docker-library/archive/refs/tags/$LIBRARY_VERSION.zip -O ./library.zip && \
unzip library.zip && \
2023-09-19 14:32:20 +08:00
mv docker-library-* library && \
2023-09-19 12:54:20 +08:00
mkdir credentials && \
echo "This folder stored the credentials of other services that apphub will connect" > credentials/readme && \
# Prepare Media and master data from Contentful
git clone --depth=1 https://github.com/Websoft9/plugin-appstore && \
2023-09-19 14:32:20 +08:00
mv -f plugin-appstore/data ./media && \
git clone --depth=1 https://github.com/Websoft9/websoft9
FROM python:3.10-slim-bullseye
WORKDIR /websoft9
COPY --from=buildstage /media/data ./media
COPY --from=buildstage /library ./library
COPY --from=buildstage /websoft9/appmanage_new ./apphub
2023-09-20 10:58:29 +08:00
RUN apt update && apt install git jq supervisor -y && \
2023-09-19 15:40:14 +08:00
mkdir credentials && \
2023-09-19 14:32:20 +08:00
echo "This folder stored the credentials of other services that integrated with apphub" > credentials/readme
2023-04-06 13:07:21 +08:00
2023-09-19 15:40:14 +08:00
RUN pip install --upgrade pip && pip install -r apphub/requirements.txt
2023-09-18 17:13:15 +08:00
# supervisor
2023-09-20 11:14:06 +08:00
2023-09-20 10:58:29 +08:00
# RUN pip install supervisor
2023-09-19 14:32:20 +08:00
COPY config/supervisord.conf /usr/local/supervisord.conf
RUN chmod +r /usr/local/supervisord.conf
2023-09-18 17:13:15 +08:00
COPY config/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
2023-09-19 15:40:14 +08:00
VOLUME /usr/websoft9/apphub/logs
2023-09-18 17:13:15 +08:00
VOLUME /usr/websoft9/apphub/src/conf
VOLUME /usr/websoft9/media
2023-09-19 12:54:20 +08:00
# Clean cache and install files
2023-09-19 09:02:56 +08:00
RUN rm -rf apphub/docs apphub/tests library.zip plugin-appstore
2023-02-21 14:21:53 +08:00
2023-09-18 17:13:15 +08:00
EXPOSE 8080
2023-09-19 14:32:20 +08:00
ENTRYPOINT ["/entrypoint.sh"]