mirror of
https://github.com/scopatz/nanorc
synced 2024-11-23 00:55:39 +01:00
5 lines
167 B
Docker
5 lines
167 B
Docker
FROM alpine:latest
|
|
RUN apk --no-cache python3 py3-pip nano curl
|
|
RUN curl https://raw.githubusercontent.com/scopatz/nanorc/master/install.sh | sh
|
|
ENTRYPOINT [ "nano" ]
|