File tree 2 files changed +17
-8
lines changed
2 files changed +17
-8
lines changed Original file line number Diff line number Diff line change
1
+ # See gitpod image here: https://hub.docker.com/layers/gitpod/workspace-base/latest
2
+ FROM gitpod/workspace-base@sha256:d69d08a0e1fa62b6d8db9e7ffe63dc21a58f0242946d945d776a819aec652130
3
+
4
+ USER gitpod
5
+
6
+ # Install fnm to manage Node.js versions
7
+ RUN curl -fsSL https://fnm.vercel.app/install | bash -s
8
+
9
+ # Install AWS SAM CLI
10
+ RUN curl -LO https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip \
11
+ && unzip -q aws-sam-cli-linux-x86_64.zip -d sam-installation \
12
+ && sudo ./sam-installation/install \
13
+ && rm -rf sam-installation aws-sam-cli-linux-*
Original file line number Diff line number Diff line change
1
+ image :
2
+ file : .gitpod.Dockerfile
1
3
tasks :
2
4
- init : |
3
5
# Install Nodejs version specified in .nvmrc
4
- nvm install
5
- nvm use
6
- # Install AWS SAM CLI
7
- wget https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip
8
- unzip aws-sam-cli-linux-x86_64.zip -d sam-installation
9
- sudo ./sam-installation/install
10
- rm -rf sam-installation aws-sam-cli-linux-*
6
+ fnm install
7
+ fnm use
11
8
# Install repo dependencies
12
9
npm run setup-local
13
10
vscode :
14
11
extensions :
15
12
- dbaeumer.vscode-eslint
16
13
- esbenp.prettier-vscode
17
14
- firsttris.vscode-jest-runner
18
- - amazonwebservices.aws-toolkit-vscode
You can’t perform that action at this time.
0 commit comments