forked from cdrx/docker-fpm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from gravitational/camh/move-to-github-actions
Update versions, build on GitHub Actions
- Loading branch information
Showing
4 changed files
with
82 additions
and
99 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM debian:12-slim | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN set -x \ | ||
&& apt-get update && apt-get install -y --no-install-recommends \ | ||
ruby \ | ||
ruby-dev \ | ||
gcc \ | ||
make \ | ||
ca-certificates \ | ||
libffi-dev \ | ||
ruby-ffi \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& gem install fpm -v 1.15.1 \ | ||
&& mkdir /src/ | ||
|
||
WORKDIR /src/ | ||
|
||
CMD /usr/local/bin/fpm |