Skip to content

Commit

Permalink
remove popt from docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
ggutierrez-sunbright committed May 3, 2024
1 parent 1bc2edc commit 3a64282
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/docker/Dockerfile.centos-centos7
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ FROM centos:centos7 as base

# Install dependencies
RUN yum install -y centos-release-scl && yum install -y devtoolset-11-gcc devtoolset-11-gcc-c++ devtoolset-11-make devtoolset-11-binutils
RUN yum install -y popt-devel
RUN echo "source /opt/rh/devtoolset-11/enable" >> /etc/profile.d/devtoolset-11.sh
RUN chmod +x /etc/profile.d/devtoolset-11.sh

Expand Down
2 changes: 1 addition & 1 deletion .github/docker/Dockerfile.centos-stream8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tgagor/centos-stream:stream8 as base

# Install dependencies
RUN yum install -y popt-devel gcc-c++ make
RUN yum install -y gcc-c++ make
2 changes: 1 addition & 1 deletion .github/docker/Dockerfile.debian-10
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:10 as base

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends make g++ libpopt-dev libpopt0
RUN apt-get update && apt-get install -y --no-install-recommends make g++
2 changes: 1 addition & 1 deletion .github/docker/Dockerfile.debian-11
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:11 as base

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends make g++ libpopt-dev libpopt0
RUN apt-get update && apt-get install -y --no-install-recommends make g++
2 changes: 1 addition & 1 deletion .github/docker/Dockerfile.ubuntu-20.04
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04 as base

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends make g++ libpopt-dev libpopt0
RUN apt-get update && apt-get install -y --no-install-recommends make g++
2 changes: 1 addition & 1 deletion .github/docker/Dockerfile.ubuntu-22.04
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04 as base

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends make g++ libpopt-dev libpopt0
RUN apt-get update && apt-get install -y --no-install-recommends make g++
2 changes: 1 addition & 1 deletion .github/docker/Dockerfile.ubuntu-22.04-clang
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04 as base

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends make clang libpopt-dev libpopt0
RUN apt-get update && apt-get install -y --no-install-recommends make clang

0 comments on commit 3a64282

Please sign in to comment.