Skip to content

Commit

Permalink
Update base dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelOnFira authored and Forest Anderson committed Jan 23, 2024
1 parent 9061bff commit 84ec3ba
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@

FROM mcr.microsoft.com/devcontainers/base:bullseye

RUN apt-get update \
&& export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends git-lfs \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y

# # Create the nixbld group and add vscode user to it
# RUN groupadd -r nixbld && usermod -a -G nixbld vscode

Expand Down

0 comments on commit 84ec3ba

Please sign in to comment.