-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update ubuntu version for devcontainer (#2736)
* ♻️ update ubuntu version for devcontainer Signed-off-by: vankichi <[email protected]> * 💚 add platform opts Signed-off-by: vankichi <[email protected]> * ♻️ Remove unnecessary installation Signed-off-by: vankichi <[email protected]> * ♻️ Change install helm command Signed-off-by: vankichi <[email protected]> * ♻️ Fix Signed-off-by: vankichi <[email protected]> * ♻️ Fix Signed-off-by: vankichi <[email protected]> * ♻️ Fix Signed-off-by: vankichi <[email protected]> * 💚 remove platform opts Signed-off-by: vankichi <[email protected]> --------- Signed-off-by: vankichi <[email protected]> Co-authored-by: Yusuke Kato <[email protected]>
- Loading branch information
Showing
3 changed files
with
13 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
# DO_NOT_EDIT this Dockerfile is generated by https://github.com/vdaas/vald/blob/main/hack/docker/gen/main.go | ||
ARG UPX_OPTIONS=-9 | ||
# skipcq: DOK-DL3026,DOK-DL3007 | ||
FROM mcr.microsoft.com/devcontainers/base:ubuntu22.04 | ||
FROM mcr.microsoft.com/devcontainers/base:ubuntu24.04 | ||
LABEL maintainer="vdaas.org vald team <[email protected]>" | ||
# skipcq: DOK-DL3002 | ||
USER root:root | ||
|
@@ -65,15 +65,10 @@ RUN --mount=type=bind,target=.,rw \ | |
&& apt-get update -y \ | ||
&& apt-get upgrade -y \ | ||
&& apt-get install -y --no-install-recommends --fix-missing \ | ||
curl \ | ||
gnupg \ | ||
software-properties-common \ | ||
&& add-apt-repository ppa:ubuntu-toolchain-r/test -y \ | ||
&& apt-get update -y \ | ||
&& apt-get upgrade -y \ | ||
&& apt-get install -y --no-install-recommends --fix-missing \ | ||
build-essential \ | ||
ca-certificates \ | ||
curl \ | ||
gnupg \ | ||
tzdata \ | ||
locales \ | ||
git \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters