You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
324 B
13 lines
324 B
ARG VARIANT="16-buster"
|
|
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:${VARIANT}
|
|
|
|
RUN npm install -g pnpm
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install --no-install-recommends \
|
|
python3-pip \
|
|
&& apt-get clean -y \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV PATH="${PATH}:./node_modules/.bin"
|