mirror of
https://github.com/Py-KMS-Organization/py-kms.git
synced 2025-05-13 14:44:50 -04:00
commit
7f08d753e3
2 changed files with 44 additions and 43 deletions
|
@ -16,18 +16,18 @@ ENV LOGSIZE ""
|
||||||
COPY ./py-kms /home/py-kms
|
COPY ./py-kms /home/py-kms
|
||||||
|
|
||||||
RUN apk add --no-cache --update \
|
RUN apk add --no-cache --update \
|
||||||
bash \
|
bash \
|
||||||
git \
|
git \
|
||||||
py3-argparse \
|
py3-argparse \
|
||||||
py3-flask \
|
py3-flask \
|
||||||
py3-pygments \
|
py3-pygments \
|
||||||
python3-tkinter \
|
python3-tkinter \
|
||||||
sqlite-libs \
|
sqlite-libs \
|
||||||
py3-pip \
|
py3-pip \
|
||||||
tzdata \
|
tzdata \
|
||||||
shadow \
|
shadow \
|
||||||
netcat-openbsd \
|
netcat-openbsd \
|
||||||
build-base python3-dev \
|
build-base python3-dev \
|
||||||
&& pip3 install --no-cache peewee tzlocal pytz wheel \
|
&& pip3 install --no-cache peewee tzlocal pytz wheel \
|
||||||
&& apk del git build-base python3-dev \
|
&& apk del git build-base python3-dev \
|
||||||
&& addgroup power_users \
|
&& addgroup power_users \
|
||||||
|
@ -37,15 +37,16 @@ RUN apk add --no-cache --update \
|
||||||
# Fix undefined timezone, in case the user did not mount the /etc/localtime
|
# Fix undefined timezone, in case the user did not mount the /etc/localtime
|
||||||
&& ln -sf /usr/share/zoneinfo/UTC /etc/localtime
|
&& ln -sf /usr/share/zoneinfo/UTC /etc/localtime
|
||||||
|
|
||||||
|
COPY docker/entrypoint.py /usr/bin/entrypoint.py
|
||||||
|
COPY docker/start.py /usr/bin/start.py
|
||||||
|
|
||||||
|
RUN chmod 755 /usr/bin/entrypoint.py
|
||||||
|
|
||||||
WORKDIR /home/py-kms
|
WORKDIR /home/py-kms
|
||||||
|
|
||||||
EXPOSE ${PORT}/tcp
|
EXPOSE ${PORT}/tcp
|
||||||
|
|
||||||
COPY docker/entrypoint.py /usr/bin/entrypoint.py
|
HEALTHCHECK --interval=5m --timeout=3s --start-period=10s --retries=4 CMD echo | nc -z localhost ${PORT} || exit 1
|
||||||
COPY docker/start.py /usr/bin/start.py
|
|
||||||
|
|
||||||
RUN chmod a+x /usr/bin/entrypoint.py
|
|
||||||
HEALTHCHECK --interval=5m --timeout=3s --start-period=10s --retries=4 CMD echo | nc -t localhost ${PORT} || exit 1
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/python3", "-u","/usr/bin/entrypoint.py"]
|
ENTRYPOINT ["/usr/bin/python3", "-u","/usr/bin/entrypoint.py"]
|
||||||
CMD ["/usr/bin/start.py"]
|
CMD ["/usr/bin/start.py"]
|
||||||
|
|
|
@ -19,33 +19,33 @@ ENV TZ America/Chicago
|
||||||
COPY py-kms /home/py-kms/
|
COPY py-kms /home/py-kms/
|
||||||
#hadolint ignore=DL3013,DL3018
|
#hadolint ignore=DL3013,DL3018
|
||||||
RUN apk add --no-cache --update \
|
RUN apk add --no-cache --update \
|
||||||
bash \
|
bash \
|
||||||
git \
|
git \
|
||||||
python3 \
|
python3 \
|
||||||
py3-argparse \
|
py3-argparse \
|
||||||
py3-flask \
|
py3-flask \
|
||||||
py3-pygments \
|
py3-pygments \
|
||||||
python3-tkinter \
|
python3-tkinter \
|
||||||
sqlite-libs \
|
sqlite-libs \
|
||||||
py3-pip \
|
py3-pip \
|
||||||
build-base python3-dev \
|
build-base python3-dev \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
duplicity \
|
duplicity \
|
||||||
tzdata \
|
tzdata \
|
||||||
shadow \
|
shadow \
|
||||||
netcat-openbsd \
|
netcat-openbsd \
|
||||||
&& git clone --branch master --depth 1 https://github.com/coleifer/sqlite-web.git /tmp/sqlite_web \
|
&& git clone --branch master --depth 1 https://github.com/coleifer/sqlite-web.git /tmp/sqlite_web \
|
||||||
&& mv /tmp/sqlite_web/sqlite_web /home/ \
|
&& mv /tmp/sqlite_web/sqlite_web /home/ \
|
||||||
&& rm -rf /tmp/sqlite_web \
|
&& rm -rf /tmp/sqlite_web \
|
||||||
&& pip3 install --no-cache-dir peewee tzlocal pytz pysqlite3 wheel \
|
&& pip3 install --no-cache-dir peewee tzlocal pytz pysqlite3 wheel \
|
||||||
&& apk del git build-base python3-dev \
|
&& apk del git build-base python3-dev \
|
||||||
&& mkdir /db/ \
|
&& mkdir /db/ \
|
||||||
&& addgroup power_users \
|
&& addgroup power_users \
|
||||||
&& adduser -S py-kms -G users -s /bin/bash \
|
&& adduser -S py-kms -G users -s /bin/bash \
|
||||||
&& usermod -a -G power_users py-kms \
|
&& usermod -a -G power_users py-kms \
|
||||||
&& chown py-kms:users /home/py-kms \
|
&& chown py-kms:users /home/py-kms \
|
||||||
# Fix undefined timezone, in case the user did not mount the /etc/localtime
|
# Fix undefined timezone, in case the user did not mount the /etc/localtime
|
||||||
&& ln -sf /usr/share/zoneinfo/UTC /etc/localtime
|
&& ln -sf /usr/share/zoneinfo/UTC /etc/localtime
|
||||||
|
|
||||||
COPY docker/entrypoint.py /usr/bin/entrypoint.py
|
COPY docker/entrypoint.py /usr/bin/entrypoint.py
|
||||||
COPY docker/start.py /usr/bin/start.py
|
COPY docker/start.py /usr/bin/start.py
|
||||||
|
@ -57,7 +57,7 @@ WORKDIR /home/py-kms
|
||||||
EXPOSE ${PORT}/tcp
|
EXPOSE ${PORT}/tcp
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
HEALTHCHECK --interval=5m --timeout=3s --start-period=10s --retries=4 CMD echo | nc -t localhost ${PORT} || exit 1
|
HEALTHCHECK --interval=5m --timeout=3s --start-period=10s --retries=4 CMD echo | nc -z localhost ${PORT} || exit 1
|
||||||
|
|
||||||
ENTRYPOINT [ "/usr/bin/python3","-u","/usr/bin/entrypoint.py" ]
|
ENTRYPOINT [ "/usr/bin/python3","-u","/usr/bin/entrypoint.py" ]
|
||||||
CMD ["/usr/bin/start.py"]
|
CMD ["/usr/bin/start.py"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue