项目重构
This commit is contained in:
12
0-部署应用/Oracle-Cloud/kms激活服务器/buildVLMCSD.dockerfile
Normal file
12
0-部署应用/Oracle-Cloud/kms激活服务器/buildVLMCSD.dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM alpine:latest as builder
|
||||
WORKDIR /root
|
||||
RUN apk add --no-cache git make build-base && \
|
||||
git clone --branch master --single-branch https://github.com/Wind4/vlmcsd.git && \
|
||||
cd vlmcsd/ && \
|
||||
make
|
||||
|
||||
FROM alpine:latest
|
||||
WORKDIR /root/
|
||||
COPY --from=builder /root/vlmcsd/bin/vlmcsd /usr/bin/vlmcsd
|
||||
EXPOSE 1688/tcp
|
||||
CMD [ "/usr/bin/vlmcsd", "-D", "-d" ]
|
||||
Reference in New Issue
Block a user