diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile deleted file mode 100644 index 45a02118ba..0000000000 --- a/.gitpod.Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -# See gitpod image here: https://hub.docker.com/r/gitpod/workspace-base -FROM gitpod/workspace-base@sha256-f08b7c4d5caf9e9a570deb49bf9987d4f725b7d1320dc2e948f795635f441747 - -USER gitpod - -# Install fnm to manage Node.js versions -RUN curl -fsSL https://fnm.vercel.app/install -o /tmp/install \ - && chmod a+x /tmp/install - && /tmp/install \ - && rm /tmp/install - -# Install AWS SAM CLI -RUN curl -LO https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip \ - && unzip -q aws-sam-cli-linux-x86_64.zip -d sam-installation \ - && sudo ./sam-installation/install \ - && rm -rf sam-installation aws-sam-cli-linux-* diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index 6efc2f3300..0000000000 --- a/.gitpod.yml +++ /dev/null @@ -1,13 +0,0 @@ -image: - file: .gitpod.Dockerfile -tasks: - - init: | - # Install Nodejs version specified in .nvmrc - fnm install - fnm use - # Install repo dependencies - npm run setup-local -vscode: - extensions: - - biomejs.biome - - firsttris.vscode-jest-runner