Nirmal Patel b69f97d1f3 Fix Devcontainer build errors (#4647) 1 jaar geleden
..
ubuntu2404 b69f97d1f3 Fix Devcontainer build errors (#4647) 1 jaar geleden
README.md b69f97d1f3 Fix Devcontainer build errors (#4647) 1 jaar geleden

README.md

Docker

ubuntu:22.04

Build and run image

Build

Building the base image is required.

docker build -t carbon-ubuntu2404-base ./ubuntu2404/base

Build image using git repository

docker build -t carbon-ubuntu2404 ./ubuntu2404/github

Build image using copy instruction

docker build -f ./ubuntu2404/Dockerfile -t carbon-ubuntu2404 ..

Run image

docker run carbon-ubuntu2404

Run image using specific file

docker run carbon-ubuntu2404 bazel run //explorer -- ./explorer/testdata/print/format_only.carbon

Using a mounted volume

Run from the repository root for PWD.

cd ..
docker run -w "/carbon-lang" -v "${PWD}:/carbon-lang" "carbon-ubuntu2404-base" bazel run "//explorer" -- "./explorer/testdata/print/format_only.carbon"