build action image with debian
Some checks failed
Docker Build / docker-build (push) Failing after 12s

This commit is contained in:
David Hiendl 2023-12-24 14:29:10 +01:00
parent fbefcd91b4
commit ee902eabd5
2 changed files with 10 additions and 4 deletions

View File

@ -1,7 +1,13 @@
FROM ruby:2
FROM debian:bookworm
RUN apk --no-cache add build-base rpm tar zip
RUN gem install --no-document fpm -v 1.11.0
RUN apt-get update \
&& apt-get install -y \
ruby \
build-essential \
rpm \
tar \
zip \
&& gem install --no-document fpm -v 1.15.1
COPY entrypoint.sh /entrypoint.sh

View File

@ -2,4 +2,4 @@
set -e
FPMOPTS="${INPUT_FPM_OPTS}" fpm $@
fpm $@