You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ci/docker/fasttest/Dockerfile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
FROM ubuntu:22.04
3
3
4
4
# ARG for quick switch to a given ubuntu mirror
5
-
ARG apt_archive="https://archive.ubuntu.com"
5
+
ARG apt_archive="http://archive.ubuntu.com"
6
6
RUN sed -i -e "s|http://archive.ubuntu.com|$apt_archive|g" -e "s|https://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
Copy file name to clipboardExpand all lines: ci/docker/sqlancer-test/Dockerfile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
FROM ubuntu:22.04
3
3
4
4
# ARG for quick switch to a given ubuntu mirror
5
-
ARG apt_archive="https://archive.ubuntu.com"
5
+
ARG apt_archive="http://archive.ubuntu.com"
6
6
RUN sed -i -e "s|http://archive.ubuntu.com|$apt_archive|g" -e "s|https://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
7
7
8
8
# We need ca-certificates first to be able to update all repos. This is why it's run twice
# user/group precreated explicitly with fixed uid/gid on purpose.
18
13
# It is especially important for rootless containers: in that case entrypoint
19
14
# can't do chown and owners of mounted volumes should be configured externally.
20
15
# We do that in advance at the begining of Dockerfile before any packages will be
21
16
# installed to prevent picking those uid / gid by some unrelated software.
22
17
# The same uid / gid (101) is used both for alpine and ubuntu.
23
-
RUN sed -i -e "s|http://archive.ubuntu.com|${apt_archive}|g" -e "s|https://archive.ubuntu.com|${apt_archive}|g" /etc/apt/sources.list \
18
+
RUN sed -i "s|http://archive.ubuntu.com|${apt_archive}|g" /etc/apt/sources.list \
Copy file name to clipboardExpand all lines: docker/test/libfuzzer/Dockerfile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ ARG FROM_TAG=latest
3
3
FROM clickhouse/test-base:$FROM_TAG
4
4
5
5
# ARG for quick switch to a given ubuntu mirror
6
-
ARG apt_archive="https://archive.ubuntu.com"
6
+
ARG apt_archive="http://archive.ubuntu.com"
7
7
RUN sed -i -e "s|http://archive.ubuntu.com|$apt_archive|g" -e "s|https://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
Copy file name to clipboardExpand all lines: docker/test/util/Dockerfile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
FROM ubuntu:22.04
3
3
4
4
# ARG for quick switch to a given ubuntu mirror
5
-
ARG apt_archive="https://archive.ubuntu.com"
5
+
ARG apt_archive="http://archive.ubuntu.com"
6
6
RUN sed -i -e "s|http://archive.ubuntu.com|$apt_archive|g" -e "s|https://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
0 commit comments