mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-27 07:10:09 +01:00
Ubuntu 22.04 base image and examples using github, a copy instruction and volumes. I was using this to run examples on a windows machine since it is more comfortable than switching OS or using the WSL subsystem directly. If this is something that other people would like to have I can add other versions of ubuntu and other linux distributions.
16 lines
443 B
Docker
16 lines
443 B
Docker
# Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
# Exceptions. See /LICENSE for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
FROM carbon-ubuntu2204-base as carbon-ubuntu2204-build
|
|
|
|
COPY . /carbon-lang
|
|
WORKDIR /carbon-lang
|
|
|
|
# Build
|
|
RUN bazel build //explorer
|
|
|
|
FROM carbon-ubuntu2204-build
|
|
|
|
CMD ["bazel", "run", "//explorer", "--", "./explorer/testdata/print/format_only.carbon"]
|