fix: Remamed lab container because it is having issues pushing
Some checks failed
Build and Push Dev Containers / build (push) Has been cancelled

This commit is contained in:
2025-07-04 19:33:53 +01:00
parent 0844cac5fe
commit 4f72865788
2 changed files with 3 additions and 0 deletions

38
homeland/Dockerfile Normal file
View File

@ -0,0 +1,38 @@
FROM alpine:latest
# Install core utilities and development tools
RUN apk add --no-cache \
bash \
curl \
git \
jq \
helix \
openssh \
sudo \
shadow \
zsh \
ca-certificates \
busybox-extras \
net-tools \
iputils \
python3 \
rust \
cargo \
go \
nodejs \
npm \
make \
build-base
# Add a non-root user
RUN adduser -D dev && echo "dev ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
RUN chsh -s /bin/zsh dev
# Set working directory
WORKDIR /home/dev
# Switch to non-root user
USER dev
# Default command
CMD ["/bin/zsh"]