aboutsummaryrefslogtreecommitdiff
path: root/llvm/utils/docker/example/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/utils/docker/example/Dockerfile')
-rw-r--r--llvm/utils/docker/example/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/docker/example/Dockerfile b/llvm/utils/docker/example/Dockerfile
index 197716f..39990c0 100644
--- a/llvm/utils/docker/example/Dockerfile
+++ b/llvm/utils/docker/example/Dockerfile
@@ -10,7 +10,7 @@
# Stage 1. Check out LLVM source code and run the build.
# FIXME: Replace 'ubuntu' with your base image
-FROM ubuntu AS builder
+FROM docker.io/ubuntu AS builder
# FIXME: Change maintainer name
LABEL maintainer="Maintainer <maintainer@email>"
# FIXME: Install llvm/clang build dependencies here. Including compiler to
@@ -29,7 +29,7 @@ RUN /tmp/scripts/build_install_llvm.sh --to /tmp/clang-install ${buildscript_arg
# Stage 2. Produce a minimal release image with build results.
# FIXME: Replace 'ubuntu' with your base image.
-FROM ubuntu
+FROM docker.io/ubuntu
# FIXME: Change maintainer name.
LABEL maintainer="Maintainer <maintainer@email>"
# FIXME: Install all packages you want to have in your release container.