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
263 B
Docker
11 lines
263 B
Docker
ARG BASE_IMAGE=node:22.21.1-alpine3.23
|
|
FROM ${BASE_IMAGE}
|
|
|
|
# Chromium
|
|
RUN apk add --no-cache chromium
|
|
ENV PLAYWRIGHT_CHROMIUM_EXECUTABLE_PATH=/usr/bin/chromium-browser
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|