Skip to content

Commit ed01a5f

Browse files
authored
Will it blend (#4)
* testing * try again * clear the screen * added prebuild
1 parent 8f6ce1d commit ed01a5f

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.gitpod.yml

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
github:
2+
prebuilds:
3+
master: true
4+
branches: true
5+
pullRequests: true
6+
pullRequestsFromForks: true
7+
addComment: true
8+
addBadge: false
9+
addLabel: prebuilt-in-gitpod
10+
111
image:
212
file: Dockerfile
313

Dockerfile

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
FROM gitpod/workspace-full
2-
RUN python3 -m venv .venv
2+
RUN pyenv global 3.8.5
33
RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
4-
RUN npm install -g aws-cdk
5-
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
6-
RUN unzip awscliv2.zip
7-
RUN sudo ./aws/install

entrypoint.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
22
PS1='\[\033[01;32m\]\u\[\033[00m\] \[\033[01;34m\]\w\[\033[00m\]$(__git_ps1 " (%s)") $ '
33
pre-commit install
4+
clear
45
echo 'We are now ready to go, welcome!!'

0 commit comments

Comments
 (0)