builder: init builder base and wiringpi

Change-Id: Ia985a05fd0e02ec40f4671aea06c443e3233b17a
Signed-off-by: YoungSoo Shin <shinys000114@gmail.com>
This commit is contained in:
2026-01-27 18:08:26 +09:00
commit 3a7a4630e5
6 changed files with 115 additions and 0 deletions

14
wiringpi/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
# Dockerfile 이라는 이름으로 저장
ARG UBUNTU_VER=resolute
FROM git.sys114.com/shinys000114/builder/base:${UBUNTU_VER}
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libcrypt-dev \
libcrypt1 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
WORKDIR /build