Update Dockerfile to use Ubuntu 24.04

As we require Go 1.20 or above.
This commit is contained in:
Junegunn Choi
2024-04-24 18:20:02 +09:00
parent 207deeadba
commit e352b68878
2 changed files with 6 additions and 6 deletions

View File

@@ -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