Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
actions
/
jekyll-build-pages
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
main
.github
bin
test_projects
.gitattributes
Dockerfile
Gemfile
LICENSE
README.md
action.yml
entrypoint.sh
Breadcrumbs
jekyll-build-pages
/
Dockerfile
Blame
Blame
Latest commit
History
History
24 lines (18 loc) · 443 Bytes
Breadcrumbs
jekyll-build-pages
/
Dockerfile
Top
File metadata and controls
Code
Blame
24 lines (18 loc) · 443 Bytes
Raw
ARG RUBY_VERSION=3.3 FROM ruby:$RUBY_VERSION-slim RUN apt-get update \ && apt-get install -y \ build-essential \ git \ locales \ nodejs COPY Gemfile Gemfile RUN NOKOGIRI_USE_SYSTEM_LIBRARIES=true bundle install RUN \ echo "en_US UTF-8" > /etc/locale.gen && \ locale-gen en-US.UTF-8 ENV LANG en_US.UTF-8 ENV LANGUAGE en_US.UTF-8 ENV LC_ALL en_US.UTF-8 COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
You can’t perform that action at this time.