File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 1- FROM ruby:2.7-slim
1+ FROM ruby:2.7
22
33LABEL version="0.1.0"
44LABEL repository="https://github.com/jeffreytse/jekyll-deploy-action"
@@ -8,19 +8,17 @@ LABEL maintainer="Jeffrey Tse <jeffreytse.mail@gmail.com>"
88# Update packages database
99RUN apt-get update
1010
11- RUN apt-get install -qq -y git-all build-essential
11+ # Installing git package
12+ RUN apt-get install -qq -y git-all
1213
1314# Allow for timezone setting in _config.yml
1415RUN apt-get install -qq -y tzdata
1516
1617# Installing imagemagick library
1718RUN apt-get install -qq -y pkg-config libmagick++-dev
1819
19- # Installing gsl library for gsl
20- RUN apt-get install -qq -y libgsl-dev
21-
22- # Installing atlas library for nmatrix
23- RUN apt-get install -qq -y libatlas-base-dev
20+ # Installing gsl and atlas libraries
21+ RUN apt-get install -qq -y libgsl-dev libatlas-base-dev
2422
2523# debug
2624RUN bundle version
You can’t perform that action at this time.
0 commit comments