mirror of
https://github.com/scopatz/nanorc.git
synced 2024-10-18 02:06:40 -07:00
5 lines
172 B
Docker
5 lines
172 B
Docker
FROM alpine:latest
|
|
RUN apk add --no-cache python3 py3-pip nano curl
|
|
RUN curl https://raw.githubusercontent.com/scopatz/nanorc/master/install.sh | sh
|
|
ENTRYPOINT [ "nano" ]
|
|
|