Files
base-images/lab/Dockerfile
Luke Else 57e8b82f02
Some checks failed
Build and Push Dev Containers / build (push) Has been cancelled
Uploading first set of base images
2025-07-04 16:33:54 +01:00

38 lines
583 B
Docker

FROM alpine:latest
# Install core utilities and development tools
RUN apk add --no-cache \
bash \
curl \
git \
jq \
helix \
openssh \
sudo \
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"]