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
2
2
3
3
RUN apt-get update && apt-get install -y \
4
4
apt-transport-https \
Original file line number Diff line number Diff line change 1
- FROM debian:10
1
+ FROM docker.io/ debian:10
2
2
3
3
# Installing dependencies.
4
4
RUN dpkg --add-architecture i386
Original file line number Diff line number Diff line change 10
10
11
11
# Stage 1. Check out LLVM source code and run the build.
12
12
# FIXME: Replace 'ubuntu' with your base image
13
- FROM ubuntu AS builder
13
+ FROM docker.io/ ubuntu AS builder
14
14
# FIXME: Change maintainer name
15
15
LABEL maintainer="Maintainer <maintainer@email>"
16
16
# 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
29
29
30
30
# Stage 2. Produce a minimal release image with build results.
31
31
# FIXME: Replace 'ubuntu' with your base image.
32
- FROM ubuntu
32
+ FROM docker.io/ ubuntu
33
33
# FIXME: Change maintainer name.
34
34
LABEL maintainer="Maintainer <maintainer@email>"
35
35
# FIXME: Install all packages you want to have in your release container.
Original file line number Diff line number Diff line change 6
6
#
7
7
# ===----------------------------------------------------------------------===//
8
8
# 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
10
10
LABEL maintainer="LLVM Developers"
11
11
# Install llvm build dependencies.
12
12
RUN apt-get update && \
@@ -26,7 +26,7 @@ RUN /tmp/scripts/build_install_llvm.sh --to /tmp/clang-install ${buildscript_arg
26
26
27
27
28
28
# 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
30
30
LABEL maintainer="LLVM Developers"
31
31
# Copy clang installation into this container.
32
32
COPY --from=builder /tmp/clang-install/ /usr/local/
Original file line number Diff line number Diff line change 4
4
#
5
5
# docker run --rm -it "$(docker build -f tests/linux/Dockerfile -q .)"
6
6
#
7
- FROM alpine:latest AS base
7
+ FROM docker.io/ alpine:latest AS base
8
8
9
9
RUN apk add --no-cache bash build-base gcc gmp-dev make python2
10
10
You can’t perform that action at this time.
0 commit comments