mirror of
https://github.com/GiriNeko/vlmcsd-docker.git
synced 2025-12-15 21:07:03 +00:00
12 lines
No EOL
350 B
Docker
12 lines
No EOL
350 B
Docker
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" ] |