move vendor to _vendor
This commit is contained in:
parent
9472651c9d
commit
823d14501c
|
@ -1,3 +1,3 @@
|
||||||
[submodule "vendor/jekyll-theme-console"]
|
[submodule "_vendor/jekyll-theme-console"]
|
||||||
path = vendor/jekyll-theme-console
|
path = _vendor/jekyll-theme-console
|
||||||
url = https://github.com/b2a3e8/jekyll-theme-console
|
url = https://github.com/b2a3e8/jekyll-theme-console
|
||||||
|
|
17
Dockerfile
17
Dockerfile
|
@ -1,17 +0,0 @@
|
||||||
FROM ruby:3.2.2-alpine AS builder
|
|
||||||
|
|
||||||
RUN apk update && apk add g++ make
|
|
||||||
|
|
||||||
RUN mkdir -p /home
|
|
||||||
COPY Gemfile /home
|
|
||||||
COPY Gemfile.lock /home
|
|
||||||
WORKDIR /home
|
|
||||||
RUN bundle install
|
|
||||||
|
|
||||||
FROM ruby:3.2.2-alpine
|
|
||||||
|
|
||||||
COPY --from=builder /usr/local/bundle /usr/local/bundle
|
|
||||||
RUN mkdir -p /home
|
|
||||||
WORKDIR /home
|
|
||||||
|
|
||||||
CMD ["jekyll", "serve"]
|
|
2
Gemfile
2
Gemfile
|
@ -1,2 +1,2 @@
|
||||||
source "https://rubygems.org"
|
source "https://rubygems.org"
|
||||||
gem "jekyll-theme-console", path: "./jekyll-theme-console"
|
gem "jekyll-theme-console", path: "./_vendor/jekyll-theme-console"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
PATH
|
PATH
|
||||||
remote: jekyll-theme-console
|
remote: _vendor/jekyll-theme-console
|
||||||
specs:
|
specs:
|
||||||
jekyll-theme-console (0.4.0)
|
jekyll-theme-console (0.4.0)
|
||||||
jekyll (>= 3.5)
|
jekyll (>= 3.5)
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 76983908faa6f06ffd87b70165f2632790d36687
|
|
Loading…
Reference in New Issue