mirror of
https://github.com/Wind4/vlmcsd-docker.git
synced 2025-04-18 08:04:02 +03:00
12 lines
356 B
Docker
12 lines
356 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", "-d" ] |