Pin fpm to 1.11.0
fpm 1.12.0 adds an unintended runtime dependency on git, which should be fixed in a future release. Pin fpm for now since installing git has its own side effects, such as installing less and changing the default pager on systems where less isn't available by default.
This commit is contained in:
parent
9ba2e7991d
commit
6098b0074f
1 changed files with 16 additions and 8 deletions
|
|
@ -14,7 +14,8 @@ RUN pip3 install awscli
|
|||
|
||||
RUN chmod 0777 /opt
|
||||
|
||||
RUN gem install fpm
|
||||
# Pin fpm to avoid git dependency in 1.12.0
|
||||
RUN gem install fpm:1.11.0
|
||||
|
||||
# Override the default pager used by R
|
||||
ENV PAGER /usr/bin/pager
|
||||
|
|
|
|||
Loading…
Reference in a new issue