mirror of
https://github.com/scopatz/nanorc
synced 2024-11-22 16:45:40 +01:00
6 lines
172 B
Docker
6 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" ]
|
|
|