fpm/image/Dockerfile
David Hiendl 7be031c3c8
All checks were successful
Docker Build / docker-build (push) Successful in 1m10s
ensure action image entrypoint is executable
2023-12-24 15:13:37 +01:00

15 lines
262 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
ADD --chmod=755 entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]