Skip to content

Commit

Permalink
install gke (#35331)
Browse files Browse the repository at this point in the history
* install gke

* remove env setup

* changed docker neo4j version
  • Loading branch information
eyalpalo authored Feb 18, 2025
1 parent a22c4a0 commit e4ee8c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/gitlab-content-ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
&& apt-get update \
&& apt-get install docker-ce-cli -y && source ~/.bashrc && docker --version
RUN apt-get install kubectl -y && source ~/.bashrc && ! kubectl version --output yaml
RUN apt-get install google-cloud-sdk-gke-gcloud-auth-plugin -y && source ~/.bashrc

# installations
RUN apt-get install openjdk-11-jre -y && source ~/.bashrc && java -version
Expand All @@ -41,7 +42,7 @@ RUN echo "deb http://httpredir.debian.org/debian stable-backports main" | tee -a
&& echo 'deb https://debian.neo4j.com stable 5' | tee -a /etc/apt/sources.list.d/neo4j.list \
&& apt-get update
RUN mkdir -p /var/lib/neo4j/plugins \
&& wget -O /var/lib/neo4j/plugins/apoc-5.5.0-core.jar https://github.com/neo4j/apoc/releases/download/5.5.0/apoc-5.5.0-core.jar \
&& wget -O /var/lib/neo4j/plugins/apoc-5.26.0-core.jar https://github.com/neo4j/apoc/releases/download/5.26.0/apoc-5.26.0-core.jar \
&& apt-get install neo4j -y && source ~/.bashrc && neo4j --version && neo4j-admin --version \
&& neo4j_conf_file="/etc/neo4j/neo4j.conf" \
&& echo "dbms.security.procedures.unrestricted=apoc.*" >> $NEO4J_CONF_FILE \
Expand All @@ -62,3 +63,4 @@ RUN echo 'export GOENV_ROOT="$HOME/.goenv"' >> ~/.bashrc \
&& echo 'export PATH="$PATH:$GOPATH/bin"' >> ~/.bashrc \
&& source ~/.bashrc
RUN curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.60.3

0 comments on commit e4ee8c2

Please sign in to comment.