Commit ef0b96d 1 parent 7afaea7 commit ef0b96d Copy full SHA for ef0b96d
File tree 3 files changed +8
-6
lines changed
3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10
10
-
11
11
12
12
### Changed
13
- -
13
+ - Update container base image from ruby:3.1-slim to docker.io/library/ruby:3.3-slim
14
+ - Adjust description and alias in Taskfile
14
15
15
16
### Fixed
16
17
-
Original file line number Diff line number Diff line change 1
- FROM ruby:3.1 -slim AS builder
1
+ FROM docker.io/library/ ruby:3.3 -slim AS builder
2
2
3
3
RUN apt-get update && apt-get -y install build-essential && rm -rf /var/lib/apt/lists/*
4
4
WORKDIR jekyll-rdf
@@ -8,14 +8,14 @@ ARG VERSION
8
8
RUN gem build jekyll-rdf.gemspec && \
9
9
gem install jekyll-rdf-*.gem mustache
10
10
11
- FROM ruby:3.1 -slim AS slim
11
+ FROM docker.io/library/ ruby:3.3 -slim AS slim
12
12
COPY --from=builder /usr/local/bundle/ /usr/local/bundle/
13
13
14
14
WORKDIR /data
15
15
16
16
CMD /usr/local/bundle/bin/jekyll build
17
17
18
- FROM ruby:3.1 -slim
18
+ FROM docker.io/library/ ruby:3.3 -slim
19
19
COPY --from=builder /jekyll-rdf/docker-resources/ /docker-resources
20
20
COPY --from=builder /usr/local/bundle/ /usr/local/bundle/
21
21
RUN apt-get update && apt-get -y install build-essential git && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 42
42
cmds :
43
43
- gem push {{.GEM_NAME}}-{{.GEM_VERSION}}.gem
44
44
45
- docker:build :
46
- desc : The list of all defined tasks
45
+ image:build :
46
+ desc : Build the docker image for the current version
47
+ aliases : [podman:build, docker:build]
47
48
cmds :
48
49
- docker build --no-cache --build-arg VERSION={{.GEM_VERSION}} -t {{.DOCKER_IMAGE}}:{{.GEM_VERSION}} .
49
50
You can’t perform that action at this time.
0 commit comments