mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
4d45839f17
- Cleanup apt garbage in the container - Download the same binary in docker and setup_minio.sh - Use binary and not rpm for minio - Sort packages in Dockerfile's
20 lines
479 B
Docker
20 lines
479 B
Docker
# rebuild in #33610
|
|
# docker build -t clickhouse/stateful-test .
|
|
ARG FROM_TAG=latest
|
|
FROM clickhouse/stateless-test:$FROM_TAG
|
|
|
|
RUN apt-get update -y \
|
|
&& env DEBIAN_FRONTEND=noninteractive \
|
|
apt-get install --yes --no-install-recommends \
|
|
llvm-9 \
|
|
python3-requests \
|
|
&& apt-get clean
|
|
|
|
COPY s3downloader /s3downloader
|
|
|
|
ENV S3_URL="https://clickhouse-datasets.s3.amazonaws.com"
|
|
ENV DATASETS="hits visits"
|
|
|
|
COPY run.sh /
|
|
CMD ["/bin/bash", "/run.sh"]
|