mirror of
https://github.com/coder/envbuilder-starter-devcontainer.git
synced 2026-01-12 07:49:12 +00:00
11 lines
191 B
Docker
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
|