File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
polly/lib/External/isl/imath/tests/linux Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1- FROM ubuntu:bionic
1+ FROM docker.io/ ubuntu:bionic
22
33RUN apt-get update && apt-get install -y \
44 apt-transport-https \
Original file line number Diff line number Diff line change 1- FROM debian:10
1+ FROM docker.io/ debian:10
22
33# Installing dependencies.
44RUN dpkg --add-architecture i386
Original file line number Diff line number Diff line change 1010
1111# Stage 1. Check out LLVM source code and run the build.
1212# FIXME: Replace 'ubuntu' with your base image
13- FROM ubuntu AS builder
13+ FROM docker.io/ ubuntu AS builder
1414# FIXME: Change maintainer name
1515LABEL maintainer="Maintainer <maintainer@email>"
1616# 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
2929
3030# Stage 2. Produce a minimal release image with build results.
3131# FIXME: Replace 'ubuntu' with your base image.
32- FROM ubuntu
32+ FROM docker.io/ ubuntu
3333# FIXME: Change maintainer name.
3434LABEL maintainer="Maintainer <maintainer@email>"
3535# FIXME: Install all packages you want to have in your release container.
Original file line number Diff line number Diff line change 66#
77# ===----------------------------------------------------------------------===//
88# Stage 1. Check out LLVM source code and run the build.
9- FROM nvidia/cuda:12.6.3-devel-ubuntu24.04 AS builder
9+ FROM docker.io/ nvidia/cuda:12.6.3-devel-ubuntu24.04 AS builder
1010LABEL maintainer="LLVM Developers"
1111# Install llvm build dependencies.
1212RUN apt-get update && \
@@ -26,7 +26,7 @@ RUN /tmp/scripts/build_install_llvm.sh --to /tmp/clang-install ${buildscript_arg
2626
2727
2828# Stage 2. Produce a minimal release image with build results.
29- FROM nvidia/cuda:12.6.3-devel-ubuntu24.04
29+ FROM docker.io/ nvidia/cuda:12.6.3-devel-ubuntu24.04
3030LABEL maintainer="LLVM Developers"
3131# Copy clang installation into this container.
3232COPY --from=builder /tmp/clang-install/ /usr/local/
Original file line number Diff line number Diff line change 44#
55# docker run --rm -it "$(docker build -f tests/linux/Dockerfile -q .)"
66#
7- FROM alpine:latest AS base
7+ FROM docker.io/ alpine:latest AS base
88
99RUN apk add --no-cache bash build-base gcc gmp-dev make python2
1010
You can’t perform that action at this time.
0 commit comments