mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
Added Linux containers for supported platforms. Updated tests to run and pass on all targets.
11 lines
257 B
Docker
11 lines
257 B
Docker
ARG BASE_IMAGE=redhat/ubi9:9.7
|
|
FROM ${BASE_IMAGE}
|
|
|
|
# Node.js 22
|
|
RUN curl -fsSL https://rpm.nodesource.com/setup_22.x | bash - && \
|
|
dnf install -y nodejs-22.21.1
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|