Skip to content

Commit

Permalink
chore: change interpreter for github provider
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreytse committed Jan 28, 2021
1 parent bab8541 commit bde707e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
20 changes: 13 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
FROM ruby:2.7-alpine
FROM ruby:2.7-slim

LABEL version="0.0.1"
LABEL version="0.1.0"
LABEL repository="https://github.com/jeffreytse/jekyll-deploy-action"
LABEL homepage="https://github.com/jeffreytse/jekyll-deploy-action"
LABEL maintainer="Jeffrey Tse <jeffreytse.mail@gmail.com>"

RUN apk add --no-cache git build-base
# Update packages database
RUN apt-get update

RUN apt-get install -qq -y git-all build-essential

# Allow for timezone setting in _config.yml
RUN apk add --update tzdata
RUN apt-get install -qq -y tzdata

# Installing imagemagick library
RUN apk add --update pkgconfig imagemagick imagemagick-dev imagemagick-libs
RUN apt-get install -qq -y pkg-config libmagick++-dev

# Installing gsl library for gsl
RUN apt-get install -qq -y libgsl-dev

# Installing gsl library
RUN apk add --update gsl-dev
# Installing atlas library for nmatrix
RUN apt-get install -qq -y libatlas-base-dev

# debug
RUN bundle version
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -e

# Get script directory
Expand Down

0 comments on commit bde707e

Please sign in to comment.