Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get -y install \
bash-completion \
bmake \
build-essential \
cmake \
coreutils \
cscope \
build-essential \
emacs \
gdb \
git \
Expand All @@ -26,6 +27,9 @@ RUN apt-get update && apt-get -y install \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Symbolic Links
RUN ln -s /usr/bin/realpath /usr/bin/grealpath

# Create a new user and give them sudo permissions without password
ARG UID=1000
ARG GID=1000
Expand Down