Skip to content

Commit bde707e

Browse files
committed
chore: change interpreter for github provider
1 parent bab8541 commit bde707e

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

Dockerfile

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
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"
44
LABEL repository="https://github.com/jeffreytse/jekyll-deploy-action"
55
LABEL homepage="https://github.com/jeffreytse/jekyll-deploy-action"
66
LABEL 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
2026
RUN bundle version

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
set -e
33

44
# Get script directory

0 commit comments

Comments
 (0)