Renovate Bot
294738c108
Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net>
19 lines
429 B
Docker
19 lines
429 B
Docker
FROM ubuntu:jammy@sha256:962425e8c7e922d472140c4ac35e009141eb21bb38c72f7125a870f521d9c0d3
|
|
|
|
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/*
|