File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 21
21
22
22
-
uses :
mattnotmitt/[email protected]
23
23
24
+ - run : find .
25
+
24
26
# - run: make build
25
27
26
28
- uses : ruby/setup-ruby@v1
34
36
# - run: bundle install
35
37
36
38
- run : cd src && JEKYLL_ENV=production bundle exec jekyll build
39
+
40
+ - run : find .
37
41
38
42
# - uses: ruby/setup-ruby@v1
39
43
# with:
Original file line number Diff line number Diff line change @@ -2,15 +2,17 @@ FROM ruby:3
2
2
# -slim
3
3
4
4
WORKDIR /srv/jekyll
5
- COPY Gemfile .
5
+ COPY src/ Gemfile .
6
6
EXPOSE 4000
7
7
8
8
ARG DEBIAN_FRONTEND=noninteractive
9
9
RUN apt-get update \
10
10
&& apt-get -y install build-essential \
11
- && gem install bundler \
12
11
&& bundle install \
13
12
&& apt-get -y clean \
14
13
&& apt-get -y purge build-essential \
15
14
&& apt-get -y autoremove \
16
15
&& rm -rf /var/lib/apt/lists/*
16
+
17
+
18
+ # && gem install bundler \
You can’t perform that action at this time.
0 commit comments