fpm/image/Dockerfile
David Hiendl ee902eabd5
Some checks failed
Docker Build / docker-build (push) Failing after 12s
build action image with debian
2023-12-24 14:29:10 +01:00

15 lines
251 B
Docker

FROM debian:bookworm
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
ENTRYPOINT ["/entrypoint.sh"]