Files
coder-envbuilder/.devcontainer/Dockerfile

11 lines
191 B
Docker
Raw Permalink Normal View History

2023-05-05 18:07:13 +00:00
FROM ubuntu
RUN apt-get update
2023-09-27 08:11:45 -05:00
RUN apt-get install vim sudo curl -y
2023-05-05 18:07:13 +00:00
RUN useradd -m -s /bin/bash -G sudo coder
USER coder
2024-08-06 21:06:09 +01:00
# Let's make a boring prompt.
RUN echo "PS1='\u@\h> '" > ~/.bashrc