This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
containers: | |
build-env: | |
image: python:3.7 | |
working_directory: /src | |
environment: | |
PYTHONPATH: "/src" | |
run_as_current_user: | |
enabled: true | |
home_directory: /home/container-user | |
tasks: | |
shell: | |
description: Install deps; Start a shell in the development environment. | |
group: Utility tasks | |
run: | |
container: build-env | |
command: sh -c 'pip install --user pipenv; /bin/sh' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment