mirror of
https://github.com/luscis/openlan.git
synced 2025-12-24 11:10:54 +08:00
16 lines
328 B
Docker
Executable File
16 lines
328 B
Docker
Executable File
FROM debian:bullseye
|
|
|
|
ARG linux_bin
|
|
|
|
WORKDIR /root
|
|
|
|
# RUN sed -ie 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list
|
|
|
|
ADD ${linux_bin} /tmp
|
|
RUN DOCKER=yes /tmp/${linux_bin}
|
|
|
|
LABEL application="OpenLAN Network Solutions"
|
|
LABEL maintainer="danieldin95@163.com"
|
|
|
|
CMD ["/var/openlan/script/switch.sh", "start"]
|