Added initial github config

This commit is contained in:
Simon Beginn 2021-09-12 18:51:13 +02:00
parent 0f0468f816
commit b170ce60b2
No known key found for this signature in database
GPG key ID: 033A4D4CE4E063D6
17 changed files with 44 additions and 372 deletions

View file

@ -0,0 +1,41 @@
FROM alpine:3.12
ENV IP 0.0.0.0
ENV PORT 1688
ENV EPID ""
ENV LCID 1033
ENV CLIENT_COUNT 26
ENV ACTIVATION_INTERVAL 120
ENV RENEWAL_INTERVAL 10080
ENV SQLITE false
ENV HWID "364F463A8863D35F"
ENV LOGLEVEL ERROR
ENV LOGFILE /var/log/pykms_logserver.log
ENV LOGSIZE ""
COPY start.sh /usr/bin/start.sh
RUN apk add --no-cache --update \
bash \
git \
py3-argparse \
py3-flask \
py3-pygments \
python3-tkinter \
sqlite-libs \
py3-pip && \
git clone https://github.com/SystemRage/py-kms.git /tmp/py-kms && \
git clone https://github.com/coleifer/sqlite-web.git /tmp/sqlite_web && \
mv /tmp/py-kms/py-kms /home/ && \
mv /tmp/sqlite_web/sqlite_web /home/ && \
rm -rf /tmp/py-kms && \
rm -rf /tmp/sqlite_web && \
pip3 install peewee tzlocal pysqlite3 && \
chmod a+x /usr/bin/start.sh && \
apk del git
WORKDIR /home/py-kms
EXPOSE ${PORT}/tcp
ENTRYPOINT ["/usr/bin/start.sh"]