Skip to content
Snippets Groups Projects
Commit 149ef3de authored by Emmanuel Bruno's avatar Emmanuel Bruno
Browse files

fixes build script and add lombok to vscode.

parent 740d6fd4
No related branches found
No related tags found
No related merge requests found
...@@ -61,7 +61,7 @@ RUN echo -e "\e[93m***** Install Jupyter Lab Extensions ****\e[38;5;241m" && \ ...@@ -61,7 +61,7 @@ RUN echo -e "\e[93m***** Install Jupyter Lab Extensions ****\e[38;5;241m" && \
--install-extension redhat.vscode-xml \ --install-extension redhat.vscode-xml \
--install-extension vscode-icons-team.vscode-icons \ --install-extension vscode-icons-team.vscode-icons \
--install-extension SonarSource.sonarlint-vscode \ --install-extension SonarSource.sonarlint-vscode \
# --install-extension GabrielBB.vscode-lombok \ --install-extension GabrielBB.vscode-lombok \
--install-extension james-yu.latex-workshop \ --install-extension james-yu.latex-workshop \
--install-extension jebbs.plantuml && \ --install-extension jebbs.plantuml && \
groupadd codeserver && \ groupadd codeserver && \
......
...@@ -6,6 +6,6 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" ...@@ -6,6 +6,6 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
docker build \ docker build \
--file Dockerfile \ --file Dockerfile \
-t ${BASE}:$SHA \ -t ${BASE}:$SHA \
-t ${BASE}:$BRANCH \ `[[ "$BRANCH" != "master" ]] && echo -t ${BASE}:$BRANCH` \
`[[ "$BRANCH" == "master" ]] && -t ${BASE}:latest` \ `[[ "$BRANCH" == "master" ]] && echo -t ${BASE}:latest` \
. .
...@@ -10,6 +10,3 @@ BRANCH=`git rev-parse --abbrev-ref HEAD` ...@@ -10,6 +10,3 @@ BRANCH=`git rev-parse --abbrev-ref HEAD`
echo Branche:$BRANCH echo Branche:$BRANCH
docker push ${BASE} --all-tags docker push ${BASE} --all-tags
#docker push ${BASE}:`git log -1 --pretty=%h`
#docker push ${BASE}:`git rev-parse --abbrev-ref HEAD`
#[[ "$BRANCH" == "master" ]] && docker push -t "${BASE}:latest"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment