Files
openlan/docker/openlan.debian
2023-04-12 08:01:42 +08:00

19 lines
265 B
Plaintext
Executable File

FROM debian:buster
ARG BIN
WORKDIR /root
ADD ${BIN} /tmp
RUN apt-get update -y
RUN DOCKER=yes /tmp/${BIN}
RUN rm -rf /tmp/*
LABEL application="OpenLAN Switch Application"
LABEL maintainer="danieldin95@163.com"
CMD ["/var/openlan/script/switch.sh", "start"]