cuisine.colabois.fr/Dockerfile
Suwako Moriya 5ea19d7578
All checks were successful
Shrine/cuisine.colabois.fr/pipeline/head This commit looks good
Fix Pipeline
2023-06-17 18:34:08 +03:00

16 lines
244 B
Docker

FROM alpine
RUN apk add sudo
RUN echo "%wheel ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
RUN apk add shadow
RUN adduser jekyll -D -u 1000
RUN gpasswd -a jekyll wheel
RUN apk add openssh
RUN apk add rsync
RUN apk add jekyll
CMD ["/bin/bash"]