mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
24 lines
804 B
Docker
24 lines
804 B
Docker
# docker build -t clickhouse/sqlancer-test .
|
|
FROM ubuntu:22.04
|
|
|
|
# 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 default-jdk maven python3 --yes --no-install-recommends && \
|
|
apt-get clean
|
|
|
|
# We need to get the repository's HEAD each time despite, so we invalidate layers' cache
|
|
ARG CACHE_INVALIDATOR=0
|
|
RUN mkdir /sqlancer && \
|
|
wget -q -O- https://github.com/sqlancer/sqlancer/archive/master.tar.gz | \
|
|
tar zx -C /sqlancer && \
|
|
cd /sqlancer/sqlancer-master && \
|
|
mvn package -DskipTests && \
|
|
rm -r /root/.m2
|
|
|
|
COPY run.sh /
|
|
COPY process_sqlancer_result.py /
|
|
CMD ["/bin/bash", "/run.sh"]
|