This repository has been archived on 2024-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
Maneger/.devcontainer/Dockerfile

9 lines
321 B
Docker

FROM ghcr.io/sirherobrine23/initjs:latest
USER root
# Add non root user and Install oh my zsh
ARG USERNAME="devcontainer"
ARG USER_UID="1000"
ARG USER_GID=$USER_UID
RUN initjs create-user --username "${USERNAME}" --uid "${USER_UID}" --gid "${USER_GID}" --groups sudo --groups docker
USER $USERNAME
WORKDIR /home/$USERNAME