Skip to content

Commit

Permalink
docker: use separate repo for builder
Browse files Browse the repository at this point in the history
this avoids unnecessary caching / rebuilds
  • Loading branch information
wiedehopf committed Aug 18, 2024
1 parent e174999 commit e4afa96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 52 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@ name: docker build

on:
schedule:
- cron: "0 10 * * *"
- cron: "0 5 * * 1"
push:
branches:
- "**"
tags:
- "v*.*.*"
- "dev"
pull_request:
branches:
- "dev"
Expand Down
49 changes: 1 addition & 48 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,51 +1,4 @@
FROM debian:bookworm-slim AS builder
RUN apt-get update && \
apt-get install --no-install-recommends -y \
git \
wget \
pkg-config \
autoconf \
gcc \
make \
libusb-1.0-0-dev \
librtlsdr-dev \
libncurses-dev \
zlib1g-dev \
libzstd-dev \
ca-certificates

# install jemalloc
RUN JEMALLOC_BDIR=$(mktemp -d) && \
git clone --depth 1 https://github.com/jemalloc/jemalloc $JEMALLOC_BDIR && \
cd $JEMALLOC_BDIR && \
./autogen.sh && \
./configure --with-lg-page=14 && \
make -j$(nproc) && \
make install && \
rm -rf $JEMALLOC_BDIR

# install readsb
SHELL ["/bin/bash", "-x", "-o", "pipefail", "-c"]
RUN --mount=type=bind,source=.,target=/app/git \
cd /app/git && \
READSB_BUILD_DIR=$(mktemp -d) && \
cp -r /app/git/* $READSB_BUILD_DIR && \
cd $READSB_BUILD_DIR && \
[[ $(uname -m) == x86_64 ]] && MARCH=" -march=nehalem" || MARCH="" && \
make -j$(nproc) RTLSDR=yes OPTIMIZE="-O2 $MARCH" && \
mv readsb /usr/local/bin && \
mv viewadsb /usr/local/bin && \
chmod +x /usr/local/bin/viewadsb /usr/local/bin/readsb && \
make clean && \
make -j$(nproc) PRINT_UUIDS=yes TRACKS_UUID=yes OPTIMIZE="-O2 $MARCH" && \
mv readsb /usr/local/bin/readsb-uuid && \
mv viewadsb /usr/local/bin/viewadsb-uuid && \
chmod +x /usr/local/bin/viewadsb-uuid && \
chmod +x /usr/local/bin/readsb-uuid && \
rm -rf $READSB_BUILD_DIR && \
mkdir -p /usr/local/share/tar1090 && \
wget -O /usr/local/share/tar1090/aircraft.csv.gz https://github.com/wiedehopf/tar1090-db/raw/csv/aircraft.csv.gz && \
true
FROM ghcr.io/wiedehopf/readsb-builder:latest AS builder

FROM debian:bookworm-slim
RUN apt-get update && \
Expand Down

0 comments on commit e4afa96

Please sign in to comment.