fpm/Dockerfile
Michael Grote a3063742d8
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
update image to ubuntu 24.04
2024-05-07 00:01:40 +02:00

20 lines
358 B
Docker

FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
# hadolint ignore=DL3008,DL3028
RUN apt-get update && \
apt-get -y --no-install-recommends install \
ruby \
ruby-dev \
rubygems \
squashfs-tools \
build-essential \
git \
wget \
rpm \
gawk \
&& apt-get clean \
&& gem install fpm \
&& rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*