Skip to content

Commit

Permalink
CI: Fix OCI-full builds
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Jul 7, 2023
1 parent 288392f commit 029f884
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.full
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN \
--mount=type=cache,id=apt,sharing=locked,target=/var/lib/apt \
true \
&& apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests --yes git build-essential libmariadb-dev
&& apt-get install --no-install-recommends --no-install-suggests --yes git build-essential libmariadb-dev pkg-config

# Create /etc/mqttwarn
RUN mkdir -p /etc/mqttwarn
Expand All @@ -37,7 +37,7 @@ RUN --mount=type=cache,id=pip,target=/root/.cache/pip \
&& pip install --use-pep517 --prefer-binary '/src[all]'

# Uninstall build prerequisites again.
RUN apt-get --yes remove --purge git build-essential libmariadb-dev && apt-get --yes autoremove
RUN apt-get --yes remove --purge git build-essential libmariadb-dev pkg-config && apt-get --yes autoremove

# Purge /src and /tmp directories.
RUN rm -rf /src /tmp/*
Expand Down

0 comments on commit 029f884

Please sign in to comment.