* Refactor devcontainer into Docker Compose We need to make the platform explicit (only via the Docker Compose) as the Dockerfile fetches a crosscompiler for x86. * Add git to dev container
11 lines
198 B
YAML
11 lines
198 B
YAML
version: "3.8"
|
|
services:
|
|
devcontainer:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
platform: linux/amd64
|
|
volumes:
|
|
- ../..:/workspaces:cached
|
|
command: sleep infinity
|