Skip to content

Commit

Permalink
ci: add ubuntu 23.04 and debian bookworm
Browse files Browse the repository at this point in the history
  • Loading branch information
jahnf committed Oct 13, 2023
1 parent 6c01f64 commit 80f3a4b
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docker/Dockerfile.debian-bookworm
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Container for building the Projecteur package
# Images available at: https://hub.docker.com/r/jahnf/projecteur/tags

FROM debian:bookworm

RUN apt-get update && mkdir /build
RUN DEBIAN_FRONTEND="noninteractive" \
apt-get install -y --no-install-recommends \
ca-certificates \
g++ \
make \
cmake \
udev \
git \
pkg-config \
qtdeclarative5-dev \
qttools5-dev-tools \
qttools5-dev \
libqt5x11extras5-dev \
libusb-1.0-0-dev \
&& rm -rf /var/lib/apt/lists/*

RUN git config --global --add safe.directory /source
23 changes: 23 additions & 0 deletions docker/Dockerfile.ubuntu-23.04
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Container for building the Projecteur package
# Images available at: https://hub.docker.com/r/jahnf/projecteur/tags

FROM ubuntu:23.04

RUN apt-get update && mkdir /build
RUN DEBIAN_FRONTEND="noninteractive" \
apt-get install -y --no-install-recommends \
ca-certificates \
g++ \
make \
cmake \
udev \
git \
pkg-config \
qtdeclarative5-dev \
qttools5-dev-tools \
qttools5-dev \
libqt5x11extras5-dev \
libusb-1.0-0-dev \
&& rm -rf /var/lib/apt/lists/*

RUN git config --global --add safe.directory /source

0 comments on commit 80f3a4b

Please sign in to comment.