-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add retina-shell image for Linux
Signed-off-by: Will Daly <[email protected]>
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# mcr.microsoft.com/azurelinux/base/core:3.0.20241005 | ||
FROM mcr.microsoft.com/azurelinux/base/core@sha256:7ec490b605aac8a44aed0b0695b0ee6ae976ec898afd9ac8d5613d7f3ce2b07b | ||
|
||
# There are a two known issues with Azure Linux 3.0.20241005 that affect this image: | ||
# 1. `iptables-nft` binary is not yet installed, but will be fixed by https://github.com/microsoft/azurelinux/pull/10786 | ||
# Until then, use `nft` to view nftables rules. | ||
# 2. `nslookup` and `bind` print an error "Algorithm not supported by SCOSSL" (but still complete successfully). | ||
# This will be fixed by https://github.com/microsoft/SymCrypt-OpenSSL/pull/92 | ||
RUN tdnf install -y \ | ||
bind-utils \ | ||
bpftool \ | ||
bpftrace \ | ||
conntrack \ | ||
curl \ | ||
ebtables-legacy \ | ||
iperf3 \ | ||
iproute \ | ||
ipset \ | ||
iptables \ | ||
iputils \ | ||
ldns-utils \ | ||
net-tools \ | ||
nftables \ | ||
nmap \ | ||
openssh \ | ||
socat \ | ||
tcpdump \ | ||
wget \ | ||
&& tdnf clean all | ||
|
||
CMD ["/bin/bash"] |