Dockerfile 443 B

123456789101112131415
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. FROM carbon-ubuntu2404-base as carbon-ubuntu2404-build
  5. COPY . /carbon-lang
  6. WORKDIR /carbon-lang
  7. # Build
  8. RUN bazel build //explorer
  9. FROM carbon-ubuntu2404-build
  10. CMD ["bazel", "run", "//explorer", "--", "./explorer/testdata/print/format_only.carbon"]