fix darwin exported symbols

update devcontrainer
This commit is contained in:
Czarek Nakamoto
2024-07-16 10:19:23 +02:00
parent 9ae4a5262a
commit b3da711965
4 changed files with 514 additions and 487 deletions

View File

@@ -7,6 +7,19 @@ RUN apt update \
# Install zsh and configure it
ARG USERNAME=user
ARG USER_UID=1000
ARG USER_GID=$USER_UID
RUN groupadd --gid $USER_GID $USERNAME \
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME \
&& apt-get update \
&& apt-get install -y sudo \
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
&& chmod 0440 /etc/sudoers.d/$USERNAME
USER $USERNAME
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0/zsh-in-docker.sh)" \
-t robbyrussell