mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
Merge branch 'ealcantara-upgrade-vscode-nodeless-image' into 'master'
Create gitlab-vscode-build image See merge request https://gitlab.com/gitlab-org/gitlab-build-images/-/merge_requests/760 Merged-by: Balasankar 'Balu' C <balasankar@gitlab.com> Approved-by: Balasankar 'Balu' C <balasankar@gitlab.com> Co-authored-by: Enrique Alcántara <ealcantara@gitlab.com>
This commit is contained in:
commit
9bba95420a
2 changed files with 18 additions and 0 deletions
|
|
@ -7,6 +7,9 @@ gitlab-charts-build-base-helm-3.9:
|
|||
gitlab-helm3.9-kubectl1.23:
|
||||
extends: .build_static_image
|
||||
|
||||
gitlab-vscode-build:
|
||||
extends: .build_static_image
|
||||
|
||||
gitlab-vscode-nodeless:
|
||||
extends: .build_static_image
|
||||
|
||||
|
|
|
|||
15
Dockerfile.gitlab-vscode-build
Normal file
15
Dockerfile.gitlab-vscode-build
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# This image is based node:18.19-alpine3.18 image. It is intended to be used
|
||||
# for all of the GitLab builds related to VS Code, e.g. the Web IDE.
|
||||
#
|
||||
# The packages installed in this image are based on VSCode development
|
||||
# environment prerequisites for Linux. You can read them in the following
|
||||
# documentation https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites
|
||||
|
||||
FROM node:18.19-bookworm
|
||||
MAINTAINER GitLab IDE Team
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y g++ python3 make git bash curl perl pkg-config \
|
||||
build-essential libx11-dev libxkbfile-dev libsecret-1-dev libkrb5-dev python-is-python3
|
||||
RUN mkdir -p /root/vscode
|
||||
WORKDIR /root/vscode
|
||||
Loading…
Add table
Add a link
Reference in a new issue