Files
coder-envbuilder/.devcontainer/Dockerfile
Cian Johnston 561b003439 boring prompt
2024-08-06 21:06:09 +01:00

11 lines
191 B
Docker

FROM ubuntu
RUN apt-get update
RUN apt-get install vim sudo curl -y
RUN useradd -m -s /bin/bash -G sudo coder
USER coder
# Let's make a boring prompt.
RUN echo "PS1='\u@\h> '" > ~/.bashrc