6 lines
236 B
Docker
6 lines
236 B
Docker
# Barebones alpine release with uv and git for python projects
|
|
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache uv --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community
|
|
RUN apk add --no-cache git bash go wget curl sudo shadow vim
|