mirror of
https://github.com/Fishwaldo/yoctobuilder.git
synced 2025-03-15 11:41:38 +00:00
14 lines
301 B
Docker
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"]
|