Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Dockerfile.cs.template file #513

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Next Next commit
Added Dockerfile.cs.template file
Signed-off-by: MdSahil-oss <Mohdssahil1@gmail.com>
  • Loading branch information
MdSahil-oss committed Jun 11, 2023
commit 2e43ba7744a91287535ff7098224395b9c501e53
10 changes: 10 additions & 0 deletions Dockerfile.cs.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# %%MARIADB_VERSION%% will be set by update.sh according to generating mariadb version image.
FROM mariadb:%%MARIADB_VERSION%%

RUN apt-get update && \
apt-get install -y mariadb-plugin-columnstore=$MARIADB_VERSION ; \
rm -rf /var/lib/apt/lists/*

COPY docker-entrypoint-cs.sh /usr/local/bin/

ENTRYPOINT ["docker-entrypoint-cs.sh"]
1 change: 1 addition & 0 deletions docker-entrypoint-cs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Add docker-column-store image related scripts.