Skip to content

Commit 24c07e4

Browse files
committed
Update base image, ruby, and apache arrow
1 parent 20d525f commit 24c07e4

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

datascience/Dockerfile

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE_TAG=2ace7f71087a
1+
ARG BASE_IMAGE_TAG=f3079808ca8c
22
FROM jupyter/datascience-notebook:$BASE_IMAGE_TAG
33

44
LABEL maintainer="Kenta Murata <[email protected]>"
@@ -37,7 +37,7 @@ RUN apt-get update && \
3737

3838
# Apache Arrow
3939

40-
ENV APACHE_ARROW_VERSION=9.0.0
40+
ENV APACHE_ARROW_VERSION=10.0.0
4141
RUN apt update && \
4242
apt install -y --no-install-recommends \
4343
apt-transport-https \
@@ -67,9 +67,9 @@ RUN apt update && \
6767
\
6868
rm -rf /var/lib/apt/lists/*
6969

70-
# Copy Ruby 3.1.2 from rubylang/ruby
70+
# Copy Ruby 3.1.3 from rubylang/ruby
7171

72-
COPY --from=rubylang/ruby:3.1.2-focal \
72+
COPY --from=rubylang/ruby:3.1.3-focal \
7373
/usr/local/bin/bundle \
7474
/usr/local/bin/bundler \
7575
/usr/local/bin/erb \
@@ -82,29 +82,29 @@ COPY --from=rubylang/ruby:3.1.2-focal \
8282
/usr/local/bin/ruby \
8383
/usr/local/bin/
8484

85-
COPY --from=rubylang/ruby:3.1.2-focal \
85+
COPY --from=rubylang/ruby:3.1.3-focal \
8686
/usr/local/etc/gemrc \
8787
/usr/local/etc/
8888

8989
# NOTE: DO NOT CHANGE the version in the path of include directory
90-
COPY --from=rubylang/ruby:3.1.2-focal \
90+
COPY --from=rubylang/ruby:3.1.3-focal \
9191
/usr/local/include/ruby-3.1.0/ \
9292
/usr/local/include/ruby-3.1.0/
9393

94-
COPY --from=rubylang/ruby:3.1.2-focal \
94+
COPY --from=rubylang/ruby:3.1.3-focal \
9595
/usr/local/lib/libruby.so \
9696
/usr/local/lib/libruby.so.* \
9797
/usr/local/lib/
9898

99-
COPY --from=rubylang/ruby:3.1.2-focal \
99+
COPY --from=rubylang/ruby:3.1.3-focal \
100100
/usr/local/lib/pkgconfig/ \
101101
/usr/local/lib/pkgconfig/
102102

103-
COPY --from=rubylang/ruby:3.1.2-focal \
103+
COPY --from=rubylang/ruby:3.1.3-focal \
104104
/usr/local/lib/ruby/ \
105105
/usr/local/lib/ruby/
106106

107-
COPY --from=rubylang/ruby:3.1.2-focal \
107+
COPY --from=rubylang/ruby:3.1.3-focal \
108108
/usr/local/share/man/man1/erb.1 \
109109
/usr/local/share/man/man1/irb.1 \
110110
/usr/local/share/man/man1/ri.1 \

minimal/Dockerfile

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE_TAG=2ace7f71087a
1+
ARG BASE_IMAGE_TAG=f3079808ca8c
22
FROM jupyter/scipy-notebook:$BASE_IMAGE_TAG
33

44
LABEL maintainer="Kenta Murata <[email protected]>"
@@ -37,7 +37,7 @@ RUN apt-get update && \
3737

3838
# Apache Arrow
3939

40-
ENV APACHE_ARROW_VERSION=9.0.0
40+
ENV APACHE_ARROW_VERSION=10.0.0
4141

4242
RUN apt update && \
4343
apt install -y --no-install-recommends \
@@ -68,9 +68,9 @@ RUN apt update && \
6868
\
6969
rm -rf /var/lib/apt/lists/*
7070

71-
# Copy Ruby 3.1.2 from rubylang/ruby
71+
# Copy Ruby 3.1.3 from rubylang/ruby
7272

73-
COPY --from=rubylang/ruby:3.1.2-focal \
73+
COPY --from=rubylang/ruby:3.1.3-focal \
7474
/usr/local/bin/bundle \
7575
/usr/local/bin/bundler \
7676
/usr/local/bin/erb \
@@ -83,29 +83,29 @@ COPY --from=rubylang/ruby:3.1.2-focal \
8383
/usr/local/bin/ruby \
8484
/usr/local/bin/
8585

86-
COPY --from=rubylang/ruby:3.1.2-focal \
86+
COPY --from=rubylang/ruby:3.1.3-focal \
8787
/usr/local/etc/gemrc \
8888
/usr/local/etc/
8989

9090
# NOTE: DO NOT CHANGE the version in the path of include directory
91-
COPY --from=rubylang/ruby:3.1.2-focal \
91+
COPY --from=rubylang/ruby:3.1.3-focal \
9292
/usr/local/include/ruby-3.1.0/ \
9393
/usr/local/include/ruby-3.1.0/
9494

95-
COPY --from=rubylang/ruby:3.1.2-focal \
95+
COPY --from=rubylang/ruby:3.1.3-focal \
9696
/usr/local/lib/libruby.so \
9797
/usr/local/lib/libruby.so.* \
9898
/usr/local/lib/
9999

100-
COPY --from=rubylang/ruby:3.1.2-focal \
100+
COPY --from=rubylang/ruby:3.1.3-focal \
101101
/usr/local/lib/pkgconfig/ \
102102
/usr/local/lib/pkgconfig/
103103

104-
COPY --from=rubylang/ruby:3.1.2-focal \
104+
COPY --from=rubylang/ruby:3.1.3-focal \
105105
/usr/local/lib/ruby/ \
106106
/usr/local/lib/ruby/
107107

108-
COPY --from=rubylang/ruby:3.1.2-focal \
108+
COPY --from=rubylang/ruby:3.1.3-focal \
109109
/usr/local/share/man/man1/erb.1 \
110110
/usr/local/share/man/man1/irb.1 \
111111
/usr/local/share/man/man1/ri.1 \

0 commit comments

Comments
 (0)