py-kms/docker/docker-py3-kms/Dockerfile

50 lines
1.1 KiB
Docker
Raw Normal View History

FROM alpine:3.12
2021-10-14 13:13:15 +02:00
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 true
ENV SQLITE_PORT 8080
ENV HWID RANDOM
ENV LOGLEVEL INFO
ENV LOGFILE /dev/stdout
ENV LOGSIZE ""
COPY ./py-kms /home/py-kms
RUN apk add --no-cache --update \
bash \
git \
py3-argparse \
py3-flask \
py3-pygments \
python3-tkinter \
sqlite-libs \
2021-09-12 19:02:39 +02:00
py3-pip \
2021-10-14 11:45:17 +02:00
tzdata \
2021-09-12 19:02:39 +02:00
build-base python3-dev && \
git clone https://github.com/coleifer/sqlite-web.git /tmp/sqlite_web && \
2021-10-14 13:13:15 +02:00
cd /tmp/sqlite_web && \
git checkout 2e7c85da3d37f80074ed3ae39b5851069b4f301c && \
cd / && \
mv /tmp/sqlite_web/sqlite_web /home/ && \
rm -rf /tmp/sqlite_web && \
2021-10-13 12:54:22 +02:00
pip3 install peewee tzlocal pytz pysqlite3 && \
2021-09-12 19:02:39 +02:00
apk del git build-base python3-dev
2021-10-14 11:45:17 +02:00
# Fix undefined timezone, in case the user did not mount the /etc/localtime
RUN cp /usr/share/zoneinfo/UTC /etc/localtime
WORKDIR /home/py-kms
2021-10-14 13:13:15 +02:00
EXPOSE ${SQLITE_PORT}/tcp
EXPOSE ${PORT}/tcp
2021-10-14 13:13:15 +02:00
COPY docker/entrypoint.py /usr/bin/entrypoint.py
RUN chmod a+x /usr/bin/entrypoint.py
2021-10-14 19:38:19 +02:00
ENTRYPOINT ["/usr/bin/python3", "/usr/bin/entrypoint.py"]