File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed
Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1- FROM ruby:2.7-alpine
1+ FROM ruby:2.7-slim
22
3- LABEL version="0.0.1 "
3+ LABEL version="0.1.0 "
44LABEL repository="https://github.com/jeffreytse/jekyll-deploy-action"
55LABEL homepage="https://github.com/jeffreytse/jekyll-deploy-action"
66LABEL maintainer="Jeffrey Tse <jeffreytse.mail@gmail.com>"
77
8- RUN apk add --no-cache git build-base
8+ # Update packages database
9+ RUN apt-get update
10+
11+ RUN apt-get install -qq -y git-all build-essential
912
1013# Allow for timezone setting in _config.yml
11- RUN apk add --update tzdata
14+ RUN apt-get install -qq -y tzdata
1215
1316# Installing imagemagick library
14- RUN apk add --update pkgconfig imagemagick imagemagick-dev imagemagick-libs
17+ RUN apt-get install -qq -y pkg-config libmagick++-dev
18+
19+ # Installing gsl library for gsl
20+ RUN apt-get install -qq -y libgsl-dev
1521
16- # Installing gsl library
17- RUN apk add --update gsl -dev
22+ # Installing atlas library for nmatrix
23+ RUN apt-get install -qq -y libatlas-base -dev
1824
1925# debug
2026RUN bundle version
Original file line number Diff line number Diff line change 1- #! /bin/sh
1+ #! /bin/bash
22set -e
33
44# Get script directory
You can’t perform that action at this time.
0 commit comments