Create gitlab-vscode-build image

This commit is contained in:
Enrique Alcántara 2024-01-25 16:59:07 +00:00 committed by Balasankar 'Balu' C
parent a5daf427ef
commit f6bdb4bbd6
2 changed files with 18 additions and 0 deletions

View 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