mirror of
https://github.com/gunchev/docker-fpm.git
synced 2025-11-20 12:15:50 +00:00
Add alpine linux 3.17.1
Signed-off-by: Doncho N. Gunchev <dgunchev@gmail.com>
This commit is contained in:
parent
7598b5f5c3
commit
92784ce64e
2 changed files with 13 additions and 0 deletions
|
|
@ -35,6 +35,9 @@ If you need to do any complicated setup in the environment before running `fpm`
|
||||||
* Rocky Linux w/ fpm
|
* Rocky Linux w/ fpm
|
||||||
* `cdrx/fpm-rockylinux:9`
|
* `cdrx/fpm-rockylinux:9`
|
||||||
|
|
||||||
|
* Alpine w/ fpm
|
||||||
|
* `cdrx/fpm-alpine:3.17.1`
|
||||||
|
|
||||||
The `:latest` tag will always point to the most recent release of the distro.
|
The `:latest` tag will always point to the most recent release of the distro.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
|
||||||
10
alpine/3.17.1/Dockerfile
Normal file
10
alpine/3.17.1/Dockerfile
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
FROM alpine:3.17.1
|
||||||
|
|
||||||
|
RUN set -x \
|
||||||
|
&& apk add --update --no-cache ruby-dev gcc make \
|
||||||
|
&& gem install fpm \
|
||||||
|
&& mkdir /src
|
||||||
|
|
||||||
|
WORKDIR /src/
|
||||||
|
|
||||||
|
CMD /usr/local/bin/fpm
|
||||||
Loading…
Add table
Add a link
Reference in a new issue