forked from opendilab/LightZero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
14 lines (11 loc) · 687 Bytes
/
.gitpod.yml
File metadata and controls
14 lines (11 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# You should adapt it to your project's needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml).
# After you've adjusted this file to your liking, commit it to your remote git repository to share the Gitpod configuration with others.
# If you need to start from a template, Gitpod provides ready-to-use ones: https://www.gitpod.io/docs/introduction/getting-started/quickstart
image:
file: .gitpod.Dockerfile
tasks:
# The 'init' command is run once at the start of workspace creation.
# It is typically used for installing project dependencies, as in this case.
- init: |
pip install -r requirements.txt
# Add any other necessary commands here