Initial commit

This commit is contained in:
Kyle Carberry
2023-05-05 18:07:13 +00:00
commit 83ca802d35
3 changed files with 19 additions and 0 deletions

10
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM ubuntu
RUN apt-get update
RUN apt-get install vim sudo -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