2021-03-30 18:08:51 +08:00
|
|
|
FROM centos:7
|
|
|
|
|
2021-07-20 21:25:12 +08:00
|
|
|
ARG TOOLCHAIN_VERSION
|
|
|
|
|
2021-03-30 18:08:51 +08:00
|
|
|
RUN yum -y update \
|
|
|
|
&& yum install -y wget git
|
|
|
|
# Do NOT be smart here and clean the cache because the container is used in the
|
|
|
|
# stateful context.
|
|
|
|
|
2022-06-23 20:02:21 +08:00
|
|
|
RUN wget -q https://s3-eu-west-1.amazonaws.com/deps.memgraph.io/${TOOLCHAIN_VERSION}/${TOOLCHAIN_VERSION}-binaries-centos-7-x86_64.tar.gz \
|
|
|
|
-O ${TOOLCHAIN_VERSION}-binaries-centos-7-x86_64.tar.gz \
|
2023-07-23 00:00:38 +08:00
|
|
|
&& tar xzvf ${TOOLCHAIN_VERSION}-binaries-centos-7-x86_64.tar.gz -C /opt \
|
|
|
|
&& rm ${TOOLCHAIN_VERSION}-binaries-centos-7-x86_64.tar.gz
|
2021-03-30 18:08:51 +08:00
|
|
|
|
|
|
|
ENTRYPOINT ["sleep", "infinity"]
|