Skip to content

Commit

Permalink
devcontainer: bring back apt update
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Feb 21, 2025
1 parent d680517 commit ff1d197
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ ARG NIX_INSTALL_SCRIPT=https://nixos.org/nix/install
COPY --chmod=0755 nix-entrypoint.sh /nix-entrypoint.sh
COPY nix.conf /tmp/nix.conf

# Install dependencies
RUN apt-get install -y bash curl git sudo xz-utils
# Update and install dependencies
RUN apt-get update && \
apt-get install -y bash curl git sudo xz-utils

# Install Nix
# NOTE: The extra conf file does not apply to the install script itself.
Expand Down

0 comments on commit ff1d197

Please sign in to comment.