Delete no longer needed Dockerfile

This commit is contained in:
Petko Bordjukov 2024-09-19 21:47:55 +03:00
parent f460163e31
commit c489e4b0af
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
FROM debian:testing-slim
ARG IB_URL=https://downloads.openwrt.org/releases/23.05.0/targets/ath79/generic/openwrt-imagebuilder-23.05.0-ath79-generic.Linux-x86_64.tar.xz
#ARG IB_URL=https://downloads.openwrt.org/snapshots/targets/ath79/generic/openwrt-imagebuilder-ath79-generic.Linux-x86_64.tar.xz
RUN apt-get update && apt-get -q -y -o Dpkg::Use-Pty=0 install build-essential \
libncurses-dev libncurses-dev zlib1g-dev gawk git gettext \
libssl-dev xsltproc rsync wget unzip python3 python3-distutils file && \
apt-get clean autoclean && \
apt-get autoremove --yes && \
rm -rf /var/lib/{apt,dpkg,cache,log}/
WORKDIR /ib
RUN wget -q -c ${IB_URL} -O - | tar -xJv --strip-components=1
CMD bash