-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade docker base image examples: -remove removed no longer existing ksmdb-utils -remove luci-app-wireguard since it was merged into luci-proto-wireguard
- Loading branch information
1 parent
0f637ea
commit 6bcaafe
Showing
12 changed files
with
29 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
FROM ubuntu:18.04 | ||
FROM ubuntu:22.04 as base | ||
LABEL maintainer "Jan Delgado <[email protected]>" | ||
|
||
RUN apt-get update\ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential\ | ||
libncurses5-dev libncursesw5-dev zlib1g-dev gawk git gettext libssl-dev\ | ||
xsltproc rsync wget unzip python3\ | ||
xsltproc rsync wget unzip python3 python3-distutils file\ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
ADD etc/entrypoint.sh /usr/local/bin/ | ||
RUN chmod 755 /usr/local/bin/entrypoint.sh | ||
|
||
FROM base | ||
|
||
# install the image builder. use tmpfile so that tar's compression | ||
# autodetection works. | ||
ARG BUILDER_URL | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
# LEDE profile to use: GL.iNet GL-AR750 | ||
LEDE_PROFILE=glinet_gl-ar750 | ||
LEDE_RELEASE=22.03.4 | ||
LEDE_RELEASE=23.05.0 | ||
LEDE_TARGET=ath79 | ||
LEDE_SUBTARGET=generic | ||
|
||
# list packages to include in LEDE image. prepend packages to deinstall with "-". | ||
LEDE_PACKAGES="-ath10k-firmware-qca9887-ct ath10k-firmware-qca9887-ct-full-htt \ | ||
ksmbd-server ksmbd-utils hd-idle luci-app-hd-idle diffutils\ | ||
ksmbd-server hd-idle luci-app-hd-idle diffutils\ | ||
kmod-usb-storage-uas kmod-scsi-core kmod-fs-ext4 ntfs-3g\ | ||
kmod-nls-cp437 kmod-nls-iso8859-1 vsftpd cryptsetup kmod-crypto-xts\ | ||
kmod-mt76 kmod-usb2 kmod-usb-ohci kmod-usb-core usbutils\ | ||
block-mount kmod-dm kmod-crypto-ecb \ | ||
kmod-crypto-misc kmod-crypto-cbc kmod-crypto-crc32c kmod-crypto-hash\ | ||
kmod-crypto-user iwinfo dropbear \ | ||
-ppp -kmod-ppp -kmod-pppoe -kmod-pppox -ppp-mod-pppoe nmap tcpdump\ | ||
kmod-wireguard luci-app-wireguard luci-proto-wireguard wireguard-tools\ | ||
kmod-wireguard luci-proto-wireguard wireguard-tools\ | ||
luci-ssl lsblk adblock luci-app-adblock" | ||
|
||
LEDE_DISABLED_SERVICES="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
LEDE_PROFILE=rpi-2 | ||
LEDE_RELEASE=22.03.4 | ||
LEDE_RELEASE=23.05.0 | ||
LEDE_TARGET=bcm27xx | ||
LEDE_SUBTARGET=bcm2709 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters