Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ RUN apt-get update \
COPY --from=uv --chown=vscode: /uv /uvx /bin/

# Install global NPM packages
RUN npm install -g tslint-to-eslint-config typescript yarn react-app-rewired
RUN npm install -g tslint-to-eslint-config typescript react-app-rewired \
&& corepack enable \
&& corepack prepare pnpm@10.28.2 --activate

# Set default shell
SHELL ["/bin/bash", "-c"]
2 changes: 1 addition & 1 deletion .devcontainer/setupEnv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cd ../../

echo "Installing dependencies for ContentProcessorWeb..."
cd ./src/ContentProcessorWeb
yarn install
pnpm install

cd ../../

Expand Down