1
0
mirror of https://github.com/Wind4/vlmcsd-docker.git synced 2025-04-18 08:04:02 +03:00
vlmcsd-docker/Dockerfile
2019-08-08 16:54:28 +08:00

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" ]