This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use an official base image, e.g., Ubuntu | |
FROM ubuntu:latest | |
# Install any dependencies ClickHouse might need | |
RUN apt-get update && apt-get install -y \ | |
tzdata \ | |
&& rm -rf /var/lib/apt/lists/* | |
WORKDIR /opt/clickhouse/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use an official base image, e.g., Ubuntu | |
FROM ubuntu:latest | |
# Install any dependencies ClickHouse might need | |
RUN apt-get update && apt-get install -y \ | |
tzdata \ | |
&& rm -rf /var/lib/apt/lists/* | |
# Create a directory for ClickHouse | |
WORKDIR /opt/clickhouse |