anu / Dockerfile
Ramczy's picture
Update Dockerfile
e423406 verified
raw
history blame contribute delete
686 Bytes
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -y curl python3.11 python3-pip libmagic1 speedtest-cli neofetch ffmpeg imagemagick git git-lfs zip wget unzip yarn
RUN apt-get install -y \
software-properties-common \
npm
RUN npm install n -g
RUN n 20
RUN npm install npm@latest -g
RUN npm install -g pm2
RUN npm install -g yarn
RUN useradd -m -u 1000 ramm
RUN curl -fsSL https://code-server.dev/install.sh | sh
# END ROOT USER #
USER ramm
ENV HOME=/home/ramm \
PATH=/home/ramm/.local/bin:$PATH
WORKDIR $HOME
COPY --chown=ramm . $HOME/server
CMD ["code-server", ".", "--bind-addr", "0.0.0.0:7860", "--auth", "none"]