yoctobuilder/Dockerfile
Justin Hammond c3fa769004
Update Dockerfile
update builder to 22.04
2024-06-12 21:33:07 +08:00

14 lines
301 B
Docker

FROM ghcr.io/crops/yocto:ubuntu-22.04-base
LABEL maintainer="Justin Hammond <justin@dynam.ac>"
USER root
COPY sudoers.usersetup /etc/
COPY entrypoint.sh /
RUN echo "#include /etc/sudoers.usersetup" >> /etc/sudoers && \
apt -y install git-lfs joe mc
USER yoctouser
ENTRYPOINT ["/entrypoint.sh"]