12 lines
108 B
Docker
12 lines
108 B
Docker
# Alpine base image
|
|
FROM alpine:edge
|
|
|
|
VOLUME /data
|
|
|
|
RUN apk add --no-cache git bash
|
|
|
|
|
|
CMD [ "/bin/bash" ]
|
|
|
|
|