-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: migrate to ruby:2.7 for Dockerfile
- Loading branch information
1 parent
bde707e
commit fbb2f2b
Showing
1 changed file
with
5 additions
and
7 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ruby:2.7-slim | ||
FROM ruby:2.7 | ||
|
||
LABEL version="0.1.0" | ||
LABEL repository="https://github.com/jeffreytse/jekyll-deploy-action" | ||
|
@@ -8,19 +8,17 @@ LABEL maintainer="Jeffrey Tse <[email protected]>" | |
# Update packages database | ||
RUN apt-get update | ||
|
||
RUN apt-get install -qq -y git-all build-essential | ||
# Installing git package | ||
RUN apt-get install -qq -y git-all | ||
|
||
# Allow for timezone setting in _config.yml | ||
RUN apt-get install -qq -y tzdata | ||
|
||
# Installing imagemagick library | ||
RUN apt-get install -qq -y pkg-config libmagick++-dev | ||
|
||
# Installing gsl library for gsl | ||
RUN apt-get install -qq -y libgsl-dev | ||
|
||
# Installing atlas library for nmatrix | ||
RUN apt-get install -qq -y libatlas-base-dev | ||
# Installing gsl and atlas libraries | ||
RUN apt-get install -qq -y libgsl-dev libatlas-base-dev | ||
|
||
# debug | ||
RUN bundle version | ||
|