mirror of
https://github.com/coder/envbuilder-starter-devcontainer.git
synced 2026-01-11 23:49:12 +00:00
11 lines
272 B
Docker
11 lines
272 B
Docker
FROM ubuntu
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install vim sudo curl docker.io -y
|
|
|
|
RUN useradd -m -s /bin/bash -G sudo coder
|
|
USER coder
|
|
|
|
# Let's add a fancy prompt!
|
|
RUN echo "PS1='🐳 \[\033[1;36m\]\h \[\033[1;34m\]\W\[\033[0;35m\] \[\033[1;36m\]# \[\033[0m\]'" > ~/.bashrc
|