mirror of
https://github.com/jordansissel/fpm
synced 2025-04-29 14:58:00 +02:00
I feel like this better suits the purpose, as we could curlbash things but this feature can also just do regular Dockerfile/Containerfile things.
8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
FROM <%= attributes[:container_image] %>
|
|
|
|
<% attributes.fetch(:container_setup_list, []).each do |step| %>
|
|
RUN <%= step %>
|
|
<% end %>
|
|
|
|
RUN <%= entry %>
|