mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +00:00 
			
		
		
		
	- Replaced ENTRYPOINT/CMD with a single CMD ["infinito --help"] in Dockerfile - Added docker-compose.yml with service 'infinito', port bindings, volumes, networks - Added env.sample for BIND_IP, SUBNET, GATEWAY defaults See conversation: https://chatgpt.com/share/68cda4d5-1fe0-800f-a7f7-191cb8b70d84
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM archlinux:latest
 | 
						||
 | 
						||
# 1) Update system and install build/runtime deps
 | 
						||
RUN pacman -Syu --noconfirm \
 | 
						||
      base-devel \
 | 
						||
      git \
 | 
						||
      python \
 | 
						||
      python-pip \
 | 
						||
      python-setuptools \
 | 
						||
      alsa-lib \
 | 
						||
      go \
 | 
						||
      rsync \
 | 
						||
    && pacman -Scc --noconfirm
 | 
						||
 | 
						||
# 2) Stub out systemctl & yay so post-install hooks and AUR calls never fail
 | 
						||
RUN printf '#!/bin/sh\nexit 0\n' > /usr/bin/systemctl \
 | 
						||
    && chmod +x /usr/bin/systemctl \
 | 
						||
    && printf '#!/bin/sh\nexit 0\n' > /usr/bin/yay \
 | 
						||
    && chmod +x /usr/bin/yay
 | 
						||
 | 
						||
# 3) Build & install python-simpleaudio from AUR manually (as non-root)
 | 
						||
RUN useradd -m aur_builder \
 | 
						||
 && su aur_builder -c "git clone https://aur.archlinux.org/python-simpleaudio.git /home/aur_builder/psa && \
 | 
						||
                    cd /home/aur_builder/psa && \
 | 
						||
                    makepkg --noconfirm --skippgpcheck" \
 | 
						||
 && pacman -U --noconfirm /home/aur_builder/psa/*.pkg.tar.zst \
 | 
						||
 && rm -rf /home/aur_builder/psa
 | 
						||
 | 
						||
# 4) Clone Kevin’s Package Manager and create its venv
 | 
						||
ENV PKGMGR_REPO=/opt/package-manager \
 | 
						||
    PKGMGR_VENV=/root/.venvs/pkgmgr
 | 
						||
 | 
						||
RUN git clone https://github.com/kevinveenbirkenbach/package-manager.git $PKGMGR_REPO \
 | 
						||
 && python -m venv $PKGMGR_VENV \
 | 
						||
 && $PKGMGR_VENV/bin/pip install --upgrade pip \
 | 
						||
 # install pkgmgr’s own deps + the ansible Python library so infinito import yaml & ansible.plugins.lookup work
 | 
						||
 && $PKGMGR_VENV/bin/pip install --no-cache-dir -r $PKGMGR_REPO/requirements.txt ansible \
 | 
						||
 # drop a thin wrapper so `pkgmgr` always runs inside that venv
 | 
						||
 && printf '#!/bin/sh\n. %s/bin/activate\nexec python %s/main.py "$@"\n' \
 | 
						||
           "$PKGMGR_VENV" "$PKGMGR_REPO" > /usr/local/bin/pkgmgr \
 | 
						||
 && chmod +x /usr/local/bin/pkgmgr
 | 
						||
 | 
						||
# 5) Ensure pkgmgr venv bin and user-local bin are on PATH
 | 
						||
ENV PATH="$PKGMGR_VENV/bin:/root/.local/bin:${PATH}"
 | 
						||
 | 
						||
# 6) Copy local Infinito.Nexus source into the image for override
 | 
						||
COPY . /opt/infinito-src
 | 
						||
 | 
						||
# 7) Install Infinito.Nexus via pkgmgr (clone-mode https)
 | 
						||
RUN pkgmgr install infinito --clone-mode https
 | 
						||
 | 
						||
# 8) Override installed Infinito.Nexus with local source and clean ignored files
 | 
						||
RUN INFINITO_PATH=$(pkgmgr path infinito) && \
 | 
						||
    rm -rf "$INFINITO_PATH"/* && \
 | 
						||
    rsync -a --delete --exclude='.git' /opt/infinito-src/ "$INFINITO_PATH"/
 | 
						||
 | 
						||
# 9) Symlink the infinito script into /usr/local/bin so ENTRYPOINT works
 | 
						||
RUN INFINITO_PATH=$(pkgmgr path infinito) && \
 | 
						||
    ln -sf "$INFINITO_PATH"/main.py /usr/local/bin/infinito && \
 | 
						||
    chmod +x /usr/local/bin/infinito
 | 
						||
 | 
						||
# 10) Run integration tests
 | 
						||
# This needed to be deactivated becaus it doesn't work with gitthub workflow
 | 
						||
#RUN INFINITO_PATH=$(pkgmgr path infinito) && \
 | 
						||
#    cd "$INFINITO_PATH" && \
 | 
						||
#    make test
 | 
						||
CMD ["infinito --help"]
 |