fix: Added sudo to dev container installs
Some checks failed
Build and Push Dev Containers / build (push) Has been cancelled

This commit is contained in:
2025-10-21 22:31:12 +01:00
parent f91d616008
commit 6d1a33f0ed
4 changed files with 4 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
FROM git.luke-else.co.uk/luke-else/lab:latest
RUN apk add --no-cache go
RUN sudo apk add --no-cache go

View File

@@ -1,5 +1,5 @@
FROM git.luke-else.co.uk/luke-else/lab:latest
RUN apk add --no-cache \
RUN sudo apk add --no-cache \
nodejs \
pnpm

View File

@@ -1,6 +1,6 @@
FROM git.luke-else.co.uk/luke-else/lab:latest
RUN apk add --no-cache \
RUN sudo apk add --no-cache \
python3 \
py3-uv

View File

@@ -1,5 +1,5 @@
FROM git.luke-else.co.uk/luke-else/lab:latest
RUN apk add --no-cache cargo rust-analyzer
RUN sudo apk add --no-cache cargo rust-analyzer
CMD [ "cargo run --release" ]