change directories for devcontainer
This commit is contained in:
15
.devcontainer/ui/Dockerfile
Normal file
15
.devcontainer/ui/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
ARG VARIANT=latest
|
||||
FROM oven/bun:${VARIANT}
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get -y install --no-install-recommends \
|
||||
ca-certificates \
|
||||
git \
|
||||
nano \
|
||||
vim-tiny \
|
||||
&& apt-get auto-remove -y \
|
||||
&& apt-get clean -y \
|
||||
&& chsh -s $(which bash) bun \
|
||||
&& echo 'export PS1="\e[01;32m\u\e[m:\e[01;34m\w\e[m\$ "' >> /home/bun/.bashrc
|
||||
|
||||
USER bun
|
||||
Reference in New Issue
Block a user