summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2024-04-24 18:20:02 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2024-04-24 18:20:30 +0900
commite352b6887849cb6c3c8ae1d98ed357f94273e90a (patch)
tree663345c4382bcd9e4a1e1a2ebfb47e29cdbd0ad3 /Dockerfile
parent207deeadba2721435a21e0f68c61e522eedef26c (diff)
Update Dockerfile to use Ubuntu 24.04
As we require Go 1.20 or above.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index aba5f22f..e31f804d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
-FROM --platform=linux/amd64 ubuntu:22.04
+FROM ubuntu:24.04
RUN apt-get update -y && apt install -y git make golang zsh fish ruby tmux
-RUN gem install --no-document -v 5.14.2 minitest
+RUN gem install --no-document -v 5.22.3 minitest
RUN echo '. /usr/share/bash-completion/completions/git' >> ~/.bashrc
RUN echo '. ~/.bashrc' >> ~/.bash_profile