image-neko-meshtasticator (b8bce86eac37078c7c495128ca1f8e6bf0b4bf4e)
Published 2025-09-10 23:54:50 +00:00 by GregoryDosh
Installation
docker pull git.auengun.net/gregorydosh/image-neko-meshtasticator:b8bce86eac37078c7c495128ca1f8e6bf0b4bf4esha256:513ab5e0f938c4bd06a02789dd9fed9a5c50dd79cdcd91449b112a798b1ffe3bAbout this package
Special image built for using with https://github.com/nektos/act
Image layers
| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=22.04 |
| ADD file:9303cc1f788d2a9a8f909b154339f7c637b2a53c75c0e7f3da62eb1fefe371b1 in / |
| CMD ["/bin/bash"] |
| RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase wget tzdata ; rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends autoconf automake bzip2 default-libmysqlclient-dev dpkg-dev file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev libdb-dev libevent-dev libffi-dev libgdbm-dev libglib2.0-dev libgmp-dev libjpeg-dev libkrb5-dev liblzma-dev libmagickcore-dev libmagickwand-dev libmaxminddb-dev libncurses5-dev libncursesw5-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev libyaml-dev make patch unzip xz-utils zlib1g-dev ; rm -rf /var/lib/apt/lists/* # buildkit |
| ARG TARGETARCH |
| ARG FROM_IMAGE TARGETARCH |
| ARG FROM_IMAGE FROM_TAG TARGETARCH |
| ARG FROM_IMAGE FROM_TAG NODE_VERSION TARGETARCH |
| ARG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION TARGETARCH |
| ARG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION TARGETARCH TYPE |
| ARG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ENV DEBIAN_FRONTEND=noninteractive |
| SHELL [ "/bin/bash", "--login", "-e", "-o", "pipefail", "-c" ] |
| WORKDIR /tmp |
| COPY dir:09c4e9994c0481ae7b269c82ce90f34869904a0a700e3293f7a6f7deed685278 in /imagegeneration/installers |
| |9 DISTRO=ubuntu FROM_IMAGE=buildpack-deps FROM_TAG=22.04 NODE_VERSION=16 18 20 RUNNER=root TARGETARCH=amd64 TYPE=act /bin/sh -c bash /imagegeneration/installers/${TYPE}.sh |
| ARG BUILD_DATE DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ARG BUILD_DATE BUILD_TAG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ARG BUILD_DATE BUILD_REF BUILD_TAG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ARG BUILD_DATE BUILD_REF BUILD_TAG BUILD_TAG_VERSION DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ARG BUILD_DATE BUILD_OWNER BUILD_REF BUILD_TAG BUILD_TAG_VERSION DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ARG BUILD_DATE BUILD_OWNER BUILD_REF BUILD_REPO BUILD_TAG BUILD_TAG_VERSION DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| LABEL org.opencontainers.image.created="${BUILD_DATE}" |
| LABEL org.opencontainers.image.vendor="${BUILD_OWNER}" |
| LABEL org.opencontainers.image.authors="https://github.com/${BUILD_OWNER}" |
| LABEL org.opencontainers.image.url="https://github.com/${BUILD_OWNER}/${BUILD_REPO}/tree/${BUILD_REF}/linux/${DISTRO}/${TYPE}/" |
| LABEL org.opencontainers.image.source="https://github.com/${BUILD_OWNER}/${BUILD_REPO}" |
| LABEL org.opencontainers.image.documentation="https://github.com/${BUILD_OWNER}/${BUILD_REPO}" |
| LABEL org.opencontainers.image.version="${BUILD_TAG_VERSION}" |
| LABEL org.opencontainers.image.title="${BUILD_TAG}-${TARGETARCH}" |
| LABEL org.opencontainers.image.description="Special image built for using with https://github.com/nektos/act" |
| LABEL org.opencontainers.image.revision="${BUILD_REF}" |
| USER ${RUNNER} |
| /bin/bash --login -e -o pipefail -c |
| RUN /bin/bash --login -e -o pipefail -c apt update && apt install -y libpam0g-dev # buildkit |
| ENV GOLANG_VERSION=1.25.1 |
| LABEL net.auengun.golang.version=1.25.1 |
| RUN /bin/bash --login -e -o pipefail -c curl https://go.dev/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz -s -L -o go${GOLANG_VERSION}.linux-amd64.tar.gz && rm -rf /usr/local/go && tar -C /usr/local -xzf go${GOLANG_VERSION}.linux-amd64.tar.gz && rm go${GOLANG_VERSION}.linux-amd64.tar.gz # buildkit |
| ENV PATH=/opt/acttoolcache/node/18.20.8/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/go/bin |
| ENV STEP_VERSION=v0.28.7 |
| LABEL net.auengun.step.version=v0.28.7 |
| ADD https://spm-ca.pages.dev/assets/spm-root.crt /usr/local/share/ca-certificates/spm-cert.crt # buildkit |
| RUN /bin/bash --login -e -o pipefail -c update-ca-certificates && cp /usr/local/share/ca-certificates/spm-cert.crt /spm-root.crt && chmod 644 /spm-root.crt && mkdir ./step && export STEP_URL="https://github.com/smallstep/cli/releases/download/${STEP_VERSION}/step_linux_${STEP_VERSION##v}_amd64.tar.gz" && curl -s "$STEP_URL" -L -o - | tar xvz --strip-components=1 -C ./step && cp ./step/bin/step /usr/local/bin && rm -rf ./step # buildkit |
| RUN /bin/bash --login -e -o pipefail -c git config --system http."https://git.auengun.net/".sslCAInfo /spm-root.crt && git config --system --add safe.directory '/workspace' # buildkit |
| ENV NODE_EXTRA_CA_CERTS=/spm-root.crt |
| RUN /bin/bash --login -e -o pipefail -c rm -rf /root/.cache/pip && pip config set global.cert /etc/ssl/certs/ca-certificates.crt # buildkit |
| ENV REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt |
| ENV PIP_ROOT_USER_ACTION=ignore |
| ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt |
| ENV INFISICAL_VERSION=v0.41.90 |
| ENV INFISICAL_API_URL=https://infisical.auengun.net/api |
| ENV INFISICAL_DISABLE_UPDATE_CHECK=true |
| LABEL net.auengun.infisical.version=v0.41.90 |
| RUN /bin/bash --login -e -o pipefail -c export INFISICAL_URL="https://github.com/infisical/infisical/releases/download/infisical-cli/${INFISICAL_VERSION}/infisical_${INFISICAL_VERSION##v}_linux_amd64.deb" && curl -s "$INFISICAL_URL" -L -o ./infisical_linux_amd64.deb && apt install -f -y ./infisical_linux_amd64.deb && rm -rf ./infisical_linux_amd64.deb # buildkit |
| ENV POETRY_VERSION=2.1.4 |
| LABEL net.auengun.poetry.version=2.1.4 |
| RUN /bin/bash --login -e -o pipefail -c python3 -m pip install poetry==${POETRY_VERSION} # buildkit |
| ENV ANSIBLE_VERSION=10.7.0 |
| LABEL net.auengun.ansible.version=10.7.0 |
| RUN /bin/bash --login -e -o pipefail -c python3 -m pip install ansible==${ANSIBLE_VERSION} # buildkit |
| ENV OPENTOFU_VERSION=v1.10.6 |
| ENV TOFU_ENABLE_STATIC_SENSITIVE=1 |
| LABEL net.auengun.opentofu.version=v1.10.6 |
| RUN /bin/bash --login -e -o pipefail -c export OPENTOFU_URL="https://github.com/opentofu/opentofu/releases/download/${OPENTOFU_VERSION}/tofu_${OPENTOFU_VERSION##v}_amd64.deb" && curl -s "$OPENTOFU_URL" -L -o ./opentofu_amd64.deb && apt install -f -y ./opentofu_amd64.deb && rm -rf ./opentofu_amd64.deb # buildkit |
| ENV GRYPE_VERSION=v0.99.1 |
| LABEL net.auengun.grype.version=v0.99.1 |
| RUN /bin/bash --login -e -o pipefail -c export GRYPE_URL="https://github.com/anchore/grype/releases/download/${GRYPE_VERSION}/grype_${GRYPE_VERSION##v}_linux_amd64.deb" && curl -s "$GRYPE_URL" -L -o ./grype_linux_amd64.deb && apt install -f -y ./grype_linux_amd64.deb && rm -rf ./grype_linux_amd64.deb # buildkit |
| ENV SYFT_VERSION=v1.32.0 |
| LABEL net.auengun.syft.version=v1.32.0 |
| RUN /bin/bash --login -e -o pipefail -c export SYFT_URL="https://github.com/anchore/syft/releases/download/${SYFT_VERSION}/syft_${SYFT_VERSION##v}_linux_amd64.deb" && curl -s "$SYFT_URL" -L -o ./syft_linux_amd64.deb && apt install -f -y ./syft_linux_amd64.deb && rm -rf ./syft_linux_amd64.deb # buildkit |
| ENV REUSE_VERSION=5.1.1 |
| LABEL net.auengun.reuse.version=5.1.1 |
| RUN /bin/bash --login -e -o pipefail -c python3 -m pip install reuse==${REUSE_VERSION} # buildkit |
| ENV COMMIT_AND_TAG_VERSION_VERSION=12.6.0 |
| LABEL net.auengun.commit-and-tag-version.version=12.6.0 |
| RUN /bin/bash --login -e -o pipefail -c npm i --global "commit-and-tag-version@${COMMIT_AND_TAG_VERSION_VERSION}" # buildkit |
| RUN /bin/bash --login -e -o pipefail -c apt install -y apt-utils gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 libasound2-dev # buildkit |
| RUN /bin/bash --login -e -o pipefail -c curl -L https://nixos.org/nix/install | sh -s -- --daemon # buildkit |
| RUN /bin/bash --login -e -o pipefail -c cat <<EOF >> /etc/ssh/ssh_config.d/default-timeout ServerAliveCountMax 3 ServerAliveInterval 15 EOF # buildkit |
| RUN /bin/bash --login -e -o pipefail -c cat <<EOF >> /etc/ssh/ssh_known_hosts @cert-authority * ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAwv6FShAz9+pvPsfFSI6XIiPxXx6UOzw67JfSZbSF92yQ6toqfPPXrpSn+FmbCw0iFgnG3+X3zhTbUHqG708Y0= EOF # buildkit |
| COPY /etc/neko/plugins /etc/neko/plugins # buildkit |
| COPY /usr/bin/neko /usr/bin/neko # buildkit |
| COPY /var/www /var/www # buildkit |
| COPY /usr/lib/xorg/modules/drivers/dummy_drv.so /usr/lib/xorg/modules/drivers/dummy_drv.so # buildkit |
| COPY /usr/lib/xorg/modules/input/neko_drv.so /usr/lib/xorg/modules/input/neko_drv.so # buildkit |
| COPY /etc/neko/neko.yaml /etc/neko/neko.yaml # buildkit |
| LABEL net.m1k1o.neko.api-version=3 |
| ARG USERNAME=neko |
| ARG USER_UID=1000 |
| ARG USER_GID=1000 |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN |3 USERNAME=neko USER_UID=1000 USER_GID=1000 /bin/bash --login -e -o pipefail -c set -eux; apt-get update; apt-get install -y --no-install-recommends wget ca-certificates python2 supervisor pulseaudio dbus-x11 xserver-xorg-video-dummy libcairo2 libxcb1 libxrandr2 libxv1 libopus0 libvpx7 libxcvt-dev zip curl xdotool xclip libgtk-3-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-pulseaudio gstreamer1.0-omx; groupadd --gid $USER_GID $USERNAME; useradd --uid $USER_UID --gid $USERNAME --shell /bin/bash --create-home $USERNAME; adduser $USERNAME audio; adduser $USERNAME video; adduser $USERNAME pulse; mkdir /tmp/.X11-unix; chmod 1777 /tmp/.X11-unix; chown $USERNAME /tmp/.X11-unix/; mkdir -p /etc/neko /var/www /var/log/neko /tmp/runtime-$USERNAME /home/$USERNAME/.config/pulse /home/$USERNAME/.local/share/xorg; chmod 1777 /var/log/neko; chown $USERNAME /var/log/neko/ /tmp/runtime-$USERNAME; chown -R $USERNAME:$USERNAME /home/$USERNAME; apt-get install -y --no-install-recommends fonts-noto-color-emoji fonts-arphic-ukai fonts-arphic-uming fonts-wqy-zenhei xfonts-intl-chinese xfonts-wqy fonts-ipafont-mincho fonts-ipafont-gothic fonts-takao-mincho fonts-unfonts-core fonts-wqy-microhei fonts-indic; apt-get clean -y; rm -rf /var/lib/apt/lists/* /var/cache/apt/* # buildkit |
| COPY /usr/bin/dbus /usr/bin/dbus # buildkit |
| COPY /etc/pulse/default.pa /etc/pulse/default.pa # buildkit |
| COPY /etc/neko/supervisord.conf /etc/neko/supervisord.conf # buildkit |
| COPY /etc/neko/supervisord.dbus.conf /etc/neko/supervisord.dbus.conf # buildkit |
| COPY /etc/neko/xorg.conf /etc/neko/xorg.conf # buildkit |
| COPY --chown=neko:neko /home/neko/.icons/default /home/neko/.icons/default # buildkit |
| COPY /etc/fonts/conf.d/ /etc/fonts/conf.d/ # buildkit |
| COPY /usr/local/share/fonts /usr/local/share/fonts # buildkit |
| ENV USER=neko |
| ENV DISPLAY=:99.0 |
| ENV PULSE_SERVER=unix:/tmp/pulseaudio.socket |
| ENV XDG_RUNTIME_DIR=/tmp/runtime-neko |
| ENV NEKO_SERVER_BIND=:8080 |
| ENV NEKO_PLUGINS_ENABLED=true |
| ENV NEKO_PLUGINS_DIR=/etc/neko/plugins/ |
| HEALTHCHECK &{["CMD-SHELL" "wget -O - http://localhost:${NEKO_SERVER_BIND#*:}/health || wget --no-check-certificate -O - https://localhost:${NEKO_SERVER_BIND#*:}/health || exit 1"] "10s" "5s" "0s" "0s" '\b'} |
| CMD ["/usr/bin/supervisord" "-c" "/etc/neko/supervisord.conf"] |
| COPY /etc/neko/supervisord/xfce.conf /etc/neko/supervisord/xfce.conf # buildkit |
| RUN |3 USERNAME=neko USER_UID=1000 USER_GID=1000 /bin/bash --login -e -o pipefail -c set -eux; apt-get update; apt-get install -y --no-install-recommends xfce4 xfce4-terminal sudo; usermod -aG sudo neko; echo "neko:neko" | chpasswd; echo "%sudo ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers; apt-get clean -y; rm -rf /var/lib/apt/lists/* /var/cache/apt/* # buildkit |
| RUN |3 USERNAME=neko USER_UID=1000 USER_GID=1000 /bin/bash --login -e -o pipefail -c apt update && apt install -y ca-certificates curl wget extrepo gpg && extrepo enable librewolf && wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | gpg --dearmor | sudo dd of=/usr/share/keyrings/vscodium-archive-keyring.gpg && echo 'deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg] https://download.vscodium.com/debs vscodium main' \ | sudo tee /etc/apt/sources.list.d/vscodium.list && apt update && apt install -y build-essential ca-certificates codium containerd.io cppcheck curl dbus-user-session fuse-overlayfs g++ git libbluetooth-dev libbz2-dev libffi-dev libgdbm-dev libgpiod-dev libi2c-dev libinput-dev liblzma-dev libncurses5-dev libncursesw5-dev libnss3-dev liborcania-dev libreadline-dev librewolf libsqlite3-dev libssl-dev libulfius-dev libusb-1.0-0-dev libuv1-dev libx11-dev libxkbcommon-x11-dev libyaml-cpp-dev llvm lsb-release make openssl pkg-config python3-tk slirp4netns tk-dev uidmap wget xterm xz-utils zip zlib1g-dev && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN |3 USERNAME=neko USER_UID=1000 USER_GID=1000 /bin/bash --login -e -o pipefail -c set -ex && pip install -U adafruit-nrfutil docker matplotlib meshtastic notebook numpy pandas platformio protobuf poetry PyPubSub PyYAML scipy simpy virtualenv # buildkit |
| COPY /firmware/.pio/build/native/program /Meshtasticator/meshtasticd # buildkit |
| COPY Meshtasticator/img /Meshtasticator/img # buildkit |
| COPY Meshtasticator/lib /Meshtasticator/lib # buildkit |
| COPY Meshtasticator/*.py Meshtasticator/*.md Meshtasticator/*.txt /Meshtasticator/ # buildkit |
| WORKDIR /Meshtasticator/ |
| RUN |3 USERNAME=neko USER_UID=1000 USER_GID=1000 /bin/bash --login -e -o pipefail -c ln -s meshtasticd program && mkdir -p /Meshtasticator/out && chown neko:neko -R /Meshtasticator/ && xdg-settings set default-web-browser librewolf.desktop && gio mime x-scheme-handler/http librewolf.desktop && gio mime x-scheme-handler/https librewolf.desktop && mkdir -p /home/neko/.config/xfce4/ && mkdir -p /home/neko/.portduino/default/prefs && mkdir -p /home/neko/.local/share/xfce4/helpers && echo -n "WebBrowser=custom-WebBrowser" > /home/neko/.config/xfce4/helpers.rc && echo -n $'[Desktop Entry]\nNoDisplay=true\nVersion=1.0\nEncoding=UTF-8\nType=X-XFCE-Helper\nX-XFCE-Category=WebBrowser\nX-XFCE-CommandsWithParameter=/usr/bin/librewolf "%s"\nIcon=librewolf\nName=librewolf\nX-XFCE-Commands=/usr/bin/librewolf\n' > /home/neko/.local/share/xfce4/helpers/custom-WebBrowser.desktop && chown -R neko:neko /home/neko/ # buildkit |
Labels
| Key | Value |
|---|---|
| io.buildah.version | 1.35.0 |
| net.auengun.ansible.version | 10.7.0 |
| net.auengun.commit-and-tag-version.version | 12.6.0 |
| net.auengun.golang.version | 1.25.1 |
| net.auengun.grype.version | v0.99.1 |
| net.auengun.infisical.version | v0.41.90 |
| net.auengun.opentofu.version | v1.10.6 |
| net.auengun.poetry.version | 2.1.4 |
| net.auengun.reuse.version | 5.1.1 |
| net.auengun.step.version | v0.28.7 |
| net.auengun.syft.version | v1.32.0 |
| net.m1k1o.neko.api-version | 3 |
| org.opencontainers.image.authors | https://github.com/catthehacker |
| org.opencontainers.image.created | 2025-09-08 12:58:48Z |
| org.opencontainers.image.description | Special image built for using with https://github.com/nektos/act |
| org.opencontainers.image.documentation | https://github.com/catthehacker/catthehacker/docker_images |
| org.opencontainers.image.ref.name | ubuntu |
| org.opencontainers.image.revision | 7df48ceacddf5c162cd6b1cbae4972e14c5bdfd7 |
| org.opencontainers.image.source | https://github.com/catthehacker/catthehacker/docker_images |
| org.opencontainers.image.title | act-22.04-amd64 |
| org.opencontainers.image.url | https://github.com/catthehacker/catthehacker/docker_images/tree/7df48ceacddf5c162cd6b1cbae4972e14c5bdfd7/linux/ubuntu/act/ |
| org.opencontainers.image.vendor | catthehacker |
| org.opencontainers.image.version | 20250908 |
Details
2025-09-10 23:54:50 +00:00
Versions (2)
View all
Container
0
OCI / Docker
linux/amd64
https://github.com/catthehacker
2.3 GiB
latest
2025-09-10
b8bce86eac37078c7c495128ca1f8e6bf0b4bf4e
2025-09-10