ClickHouse/docker/test/sqlancer/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
893 B
Docker
Raw Permalink Normal View History

2021-09-06 11:33:39 +00:00
# docker build -t clickhouse/sqlancer-test .
2022-10-17 13:10:31 +00:00
FROM ubuntu:22.04
2021-01-13 09:49:52 +00:00
# ARG for quick switch to a given ubuntu mirror
ARG apt_archive="http://archive.ubuntu.com"
RUN sed -i "s|http://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
RUN apt-get update --yes \
&& env DEBIAN_FRONTEND=noninteractive apt-get install wget git python3 default-jdk maven --yes --no-install-recommends \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
# We need to get the repository's HEAD each time despite, so we invalidate layers' cache
ARG CACHE_INVALIDATOR=0
2021-01-13 09:49:52 +00:00
RUN mkdir /sqlancer && \
2023-06-15 22:28:09 +00:00
wget -q -O- https://github.com/sqlancer/sqlancer/archive/main.tar.gz | \
tar zx -C /sqlancer && \
2023-06-15 22:28:09 +00:00
cd /sqlancer/sqlancer-main && \
2023-06-15 22:44:42 +00:00
mvn --no-transfer-progress package -DskipTests && \
rm -r /root/.m2
2021-01-13 09:49:52 +00:00
COPY run.sh /
2021-02-26 11:43:58 +00:00
COPY process_sqlancer_result.py /
2021-01-13 09:49:52 +00:00
CMD ["/bin/bash", "/run.sh"]