Skip to content
This repository has been archived by the owner on Sep 12, 2021. It is now read-only.

Commit

Permalink
Fixed docker files path problem
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmicro committed Feb 13, 2020
1 parent 4c51738 commit a549c4f
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions docker/docker-py3-kms-minimal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ ENV LCID 1033
ENV CLIENT_COUNT 26
ENV ACTIVATION_INTERVAL 120
ENV RENEWAL_INTERVAL 10080
ENV HWID "364F463A8863D35F"
ENV LOGLEVEL ERROR
ENV HWID "RANDOM"
ENV LOGLEVEL INFO
ENV LOGFILE /var/log/pykms_logserver.log
ENV LOGSIZE ""

Expand All @@ -24,14 +24,11 @@ RUN apk add --no-cache --update \
sqlite-libs \
py3-pip && \
pip3 install peewee tzlocal && \
git clone https://github.com/SystemRage/py-kms/ /home/ && \
apk del git

WORKDIR /home/py-kms

COPY ./py-kms/ /home/py-kms/
COPY ./docker/docker-py3-kms/start.sh /usr/bin/start.sh
RUN chmod a+x /usr/bin/start.sh

EXPOSE ${PORT}/tcp

ENTRYPOINT /usr/bin/python3 pykms_Server.py ${IP} ${PORT} -l ${LCID} -c ${CLIENT_COUNT} -a ${ACTIVATION_INTERVAL} -r ${RENEWAL_INTERVAL} -w ${HWID} -V ${LOGLEVEL} -F ${LOGFILE}

0 comments on commit a549c4f

Please sign in to comment.