109 lines
3.2 KiB
Docker
109 lines
3.2 KiB
Docker
# syntax=docker/dockerfile:1.6
|
|
# Find eligible builder images on Docker Hub. We use Ubuntu/Debian
|
|
# instead of Alpine to avoid DNS resolution issues in production.
|
|
#
|
|
# https://hub.docker.com/r/hexpm/elixir/tags?name=ubuntu
|
|
#
|
|
# This file is based on these images:
|
|
#
|
|
# - https://hub.docker.com/r/hexpm/elixir/tags - for the build image
|
|
# - codeberg.org/gmcintire/towerops-base - prebuilt runtime base (see Dockerfile.base)
|
|
# - Ex: docker.io/hexpm/elixir:1.20.2-erlang-29.0.3-debian-trixie-20260713-slim
|
|
#
|
|
ARG ELIXIR_VERSION=1.20.2
|
|
ARG OTP_VERSION=29.0.3
|
|
ARG DEBIAN_VERSION=trixie-20260713-slim
|
|
|
|
ARG BUILDER_IMAGE="docker.io/hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
|
|
# Prebuilt runtime base (see Dockerfile.base) ships with gdal-bin +
|
|
# snmp + libsnmp40 + locale + BEAM runtime apt deps already installed.
|
|
# Built by .forgejo/workflows/build-base.yaml only when Dockerfile.base
|
|
# changes, so this Dockerfile pulls a ready-made layer instead of
|
|
# reinstalling gdal (~500 MB) on every push.
|
|
ARG BASE_IMAGE="codeberg.org/gmcintire/towerops-base:latest"
|
|
|
|
FROM ${BUILDER_IMAGE} AS builder
|
|
ENV MIX_OS_DEPS_COMPILE_PARTITION_COUNT=6
|
|
# Disable TTY for cross-architecture builds
|
|
ENV TERM=dumb
|
|
|
|
# install build dependencies
|
|
RUN apt-get update \
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get upgrade -y \
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends build-essential git curl libsnmp-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# prepare build dir
|
|
WORKDIR /app
|
|
|
|
# set build ENV
|
|
ENV MIX_ENV="prod"
|
|
|
|
# install hex + rebar
|
|
RUN mix local.hex --force \
|
|
&& mix local.rebar --force
|
|
|
|
# install mix dependencies
|
|
COPY mix.exs mix.lock ./
|
|
COPY vendor vendor
|
|
RUN mix deps.get --only $MIX_ENV
|
|
RUN mkdir config
|
|
|
|
# copy compile-time config files before we compile dependencies
|
|
# to ensure any relevant config change will trigger the dependencies
|
|
# to be re-compiled.
|
|
COPY config/config.exs config/${MIX_ENV}.exs config/
|
|
RUN mix deps.compile
|
|
|
|
RUN mix assets.setup
|
|
|
|
COPY priv priv
|
|
|
|
COPY c_src c_src
|
|
|
|
# Compile the C NIF before Elixir compilation
|
|
RUN cd c_src && make
|
|
|
|
COPY lib lib
|
|
|
|
# Compile the release
|
|
RUN mix compile
|
|
|
|
COPY assets assets
|
|
|
|
# compile assets
|
|
RUN mix assets.deploy
|
|
|
|
# Changes to config/runtime.exs don't require recompiling the code
|
|
COPY config/runtime.exs config/
|
|
|
|
COPY rel rel
|
|
RUN mix release
|
|
|
|
# Final runtime stage. Pulls the prebuilt towerops-base image
|
|
# (Dockerfile.base) which already carries gdal-bin + snmp + libsnmp40 +
|
|
# locale + BEAM runtime apt deps. We just COPY the Elixir release on
|
|
# top.
|
|
FROM ${BASE_IMAGE} AS final
|
|
|
|
WORKDIR "/app"
|
|
RUN chown nobody /app
|
|
|
|
# set runner ENV
|
|
ENV MIX_ENV="prod"
|
|
|
|
# Only copy the final release from the build stage
|
|
COPY --from=builder --chown=nobody:root /app/_build/${MIX_ENV}/rel/towerops ./
|
|
|
|
USER nobody
|
|
|
|
# If using an environment that doesn't automatically reap zombie processes, it is
|
|
# advised to add an init process such as tini via `apt-get install`
|
|
# above and adding an entrypoint. See https://github.com/krallin/tini for details
|
|
# ENTRYPOINT ["/tini", "--"]
|
|
|
|
# Health check for container orchestration
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=40s --retries=3 \
|
|
CMD ["/app/bin/towerops", "rpc", "1 + 1"]
|
|
|
|
CMD ["/app/bin/server"]
|