We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ed0e8d commit b637e3aCopy full SHA for b637e3a
2 files changed
.gitpod.Dockerfile
@@ -0,0 +1,3 @@
1
+FROM gitpod/workspace-full
2
+RUN pip install --upgrade pip && \
3
+ pip install poetry &&
.gitpod.yml
@@ -2,11 +2,12 @@
tasks:
- name: "Prepare Environment"
4
init: >
5
- pip install --upgrade pip &&
6
- pip install --upgrade poetry &&
7
poetry install &&
8
- poetry shell &&
9
- clear
+ gp sync-done install
+ - name: "Activate the shell"
+ init: gp sync-await install
+ command: poetry shell
10
+ - name: "Beerlog"
11
command: beerlog
12
13
# Ports to expose on workspace startup
@@ -22,3 +23,6 @@ vscode:
22
23
- "tamasfe.even-better-toml"
24
- "alexcvzz.vscode-sqlite"
25
- "jdinhlife.gruvbox"
26
+
27
+image:
28
+ file: .gitpod.Dockerfile
0 commit comments