Added multiple architectures Dockerfile

This commit is contained in:
Teddysun
2020-01-20 22:52:03 +09:00
parent e14e181b0a
commit 7e4a57ba3a
4 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
# Dockerfile for KMS Server
# Copyright (C) 2018 - 2020 Teddysun <i@teddysun.com>
# Reference URL:
# https://github.com/Wind4/vlmcsd
FROM --platform=$TARGETPLATFORM alpine:latest
LABEL maintainer="Teddysun <i@teddysun.com>"
ENV KMS_RELEASE https://github.com/Wind4/vlmcsd/archive/master.zip
RUN runDeps="\
g++ \
gcc \
wget \
make \
unzip \
"; \
set -ex \
&& apk add --no-cache --virtual .build-deps ${runDeps} \
&& cd /tmp \
&& wget -O vlmcsd.zip ${KMS_RELEASE} \
&& unzip vlmcsd.zip \
&& cd vlmcsd-master \
&& make \
&& cp -p bin/vlmcsd /usr/bin/ \
&& chmod 755 /usr/bin/vlmcsd \
&& rm -rf /tmp/vlmcsd.zip /tmp/vlmcsd-master \
&& apk del .build-deps
EXPOSE 1688
CMD [ "vlmcsd", "-D" ]