6 lines
No EOL
125 B
Docker
6 lines
No EOL
125 B
Docker
FROM alpine:3.20.1
|
|
|
|
# Install base
|
|
RUN apk add --no-cache --upgrade grep
|
|
RUN apk add --no-cache bash git
|
|
CMD [ "/bin/bash" ] |