mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-17 16:38:18 +00:00
64 lines
2.2 KiB
Io
64 lines
2.2 KiB
Io
FROM node
|
|
LABEL maintainer="Coderaiser"
|
|
LABEL org.opencontainers.image.source="https://github.com/coderaiser/cloudcmd"
|
|
|
|
RUN mkdir -p /usr/src/cloudcmd
|
|
WORKDIR /usr/src/cloudcmd
|
|
|
|
COPY package.json /usr/src/cloudcmd/
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && apt-get upgrade && apt-get autoremove && \
|
|
apt-get install -y netcat-openbsd mc iputils-ping vim neovim sudo locales && \
|
|
npm i wisdom nupdate version-io redrun superc8 \
|
|
supertape madrun redlint putout renamify-cli runny redfork -g && \
|
|
echo "> install bun" && \
|
|
curl -fsSL https://bun.sh/install | bash && \
|
|
mv ~/.bun /usr/local/src/bun && \
|
|
chmod a+rwx /usr/local/src/bun && \
|
|
ln -s /usr/local/src/bun/bin/bun /usr/local/bin/bun && \
|
|
echo "> install deno" && \
|
|
curl -fsSL https://deno.land/install.sh | sh && \
|
|
mv ~/.deno /usr/local/src/deno && \
|
|
chmod a+rwx /usr/local/src/deno && \
|
|
ln -s /usr/local/src/deno/bin/deno /usr/local/bin/deno && \
|
|
bun r gritty --omit dev && \
|
|
bun i gritty --omit dev && \
|
|
bun pm cache rm && \
|
|
echo "setup git" && \
|
|
git config --global core.whitespace -trailing-space && \
|
|
git config --global pull.rebase true && \
|
|
echo "> allow sudo apt-get install for everybody" && \
|
|
echo "ALL ALL=(ALL) NOPASSWD: /usr/bin/apt-get *" > /etc/sudoers.d/apt-install && \
|
|
chmod 0440 /etc/sudoers.d/apt-install && \
|
|
echo "> configure bash" && \
|
|
echo "alias ls='ls --color=auto'" >> /etc/bash.bashrc && \
|
|
echo "alias buni='bun i --no-save'" >> /etc/bash.bashrc && \
|
|
echo "PS1='\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '" >> /etc/bash.bashrc && \
|
|
echo "set editing-mode vi" >> /etc/inputrc && \
|
|
echo "TAB: menu-complete" >> /etc/inputrc && \
|
|
echo "set UTF-8" && \
|
|
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
|
|
echo "ru_RU.UTF-8 UTF-8" >> /etc/locale.gen && \
|
|
echo "uk_UA.UTF-8 UTF-8" >> /etc/locale.gen && \
|
|
echo "es_ES.UTF-8 UTF-8" >> /etc/locale.gen && \
|
|
locale-gen
|
|
|
|
COPY . /usr/src/cloudcmd
|
|
|
|
WORKDIR /
|
|
|
|
ENV cloudcmd_terminal=true
|
|
ENV cloudcmd_terminal_path=gritty
|
|
ENV cloudcmd_open=false
|
|
ENV PATH=node_modules/.bin:$PATH
|
|
|
|
ENV LANG=en_US.UTF-8
|
|
ENV LANGUAGE=en_US:en
|
|
ENV LC_ALL=en_US.UTF-8
|
|
|
|
|
|
EXPOSE 8000
|
|
|
|
ENTRYPOINT ["/usr/src/cloudcmd/bin/cloudcmd.js"]
|