From 6d46368321c9e9bf219de3f40bb24a97f01c68a6 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 22 Jul 2025 10:56:55 +0000 Subject: [PATCH] get rid of reduntant code --- .devcontainer/Dockerfile | 12 ------------ .devcontainer/post-install.sh | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 7deb7793..2516c096 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -20,18 +20,6 @@ RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \ && node -v \ && npm -v -# # Install Node.js 18.19.1 manually -# RUN curl -fsSL https://nodejs.org/dist/v18.19.1/node-v18.19.1-linux-x64.tar.xz -o node.tar.xz \ -# && mkdir -p /usr/local/lib/nodejs \ -# && tar -xJf node.tar.xz -C /usr/local/lib/nodejs \ -# && rm node.tar.xz \ -# && ln -s /usr/local/lib/nodejs/node-v18.19.1-linux-x64/bin/node /usr/bin/node \ -# && ln -s /usr/local/lib/nodejs/node-v18.19.1-linux-x64/bin/npm /usr/bin/npm \ -# && ln -s /usr/local/lib/nodejs/node-v18.19.1-linux-x64/bin/npx /usr/bin/npx \ -# && node -v \ -# && npm -v - - # # Install aws # RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" # RUN unzip awscliv2.zip diff --git a/.devcontainer/post-install.sh b/.devcontainer/post-install.sh index df1d88f3..9f018f38 100644 --- a/.devcontainer/post-install.sh +++ b/.devcontainer/post-install.sh @@ -1 +1 @@ -# npm install; \ No newline at end of file +npm install; \ No newline at end of file