그누보드 G6 Docker Container Build
VM처럼 사용할수 있는 컨테이너를 만들어보겠습니다.
FROM python:bookworm AS git
ARG user=g6RUN useradd --create-home --shell /bin/bash $user
RUN git clone --recurse-submodules -j8 --depth 1 https://github.com/gnuboard/g6.git
WORKDIR /g6
RUN mkdir -p /g6/dataRUN chown -R $user:$user /g6# Encountering issues with the ownership change of the ./data directory.# The exact cause is unclear, however, the COPY --chown option does not# seem to be working as expected for the ./data directory.# As a result, we're utilising the RUN command to correctly set the ownership.RUN find . -mindepth 1 -maxdepth 1 -name '.*' ! -name '.' ! -name '..' -exec bash -c 'echo "Deleting {}"; rm -rf {}' \;
FROM python:bookworm AS env-builder
ARG user=g6RUN useradd --create-home --shell /bin/bash $user
ARG TARGETARCHCOPY --from=git /g6/requirements.txt /g6/requirements.txt
WORKDIR /g6RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \ --mount=target=/var/cache/apt,type=cache,sharing=locked \ rm -f /etc/apt/apt.conf.d/docker-clean \ && apt-get update \ && apt-get -y --no-install-recommends install \ locales \ tini
RUN if [ "$TARGETARCH" = "arm" ]; then \ apt-get update \ && apt-get -y install \ cmake \ ninja-build \ build-essential \ g++ \ gobjc \ meson \ liblapack-dev \ libblis-dev \ libblas-dev \ rustc \ cargo \ libopenblas-dev \ python3-dev; \ fi
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.genRUN dpkg-reconfigure --frontend=noninteractive localesRUN python3 -m venv /venvRUN /venv/bin/python3 -m pip install -r requirements.txt -vvvRUN find . -type f \( -name '__pycache__' -o -name '*.pyc' -o -name '*.pyo' \) -exec bash -c 'echo "Deleting {}"; rm -f {}' \;
FROM python:slim-bookworm AS final
ARG user=g6RUN useradd --create-home --shell /bin/bash $user
COPY --from=git --chown=$user:$user /g6 /g6COPY --from=env-builder --chown=$user:$user /venv /venvCOPY --from=env-builder --chown=$user:$user /usr/bin/tini /usr/bin/tini
USER g6WORKDIR /g6VOLUME /g6/dataEXPOSE 8000
ENTRYPOINT ["tini", "--"]# Utilising tini as our init system within the Docker container for graceful start-up and termination.# Tini serves as an uncomplicated init system, adept at managing the reaping of zombie processes and forwarding signals.# This approach is crucial to circumvent issues with unmanaged subprocesses and signal handling in containerised environments.# By integrating tini, we enhance the reliability and stability of our Docker containers.# Ensures smooth start-up and shutdown processes, and reliable, safe handling of signal processing.
CMD ["/venv/bin/uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
Hello, Astro with Preact!