Files
openlan/docker/debian/Dockerfile
Daniel Ding 269ed244c0
Some checks are pending
Coverage CI / build (push) Waiting to run
CodeQL / Analyze (go) (push) Waiting to run
Ubuntu CI / build (push) Waiting to run
fea: rename point to access.
2025-03-21 23:12:06 +08:00

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