Skip to content
Snippets Groups Projects
Commit 73f14baf authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Minor fixes, added build script

parent 702f674e
No related branches found
No related tags found
Loading
...@@ -151,7 +151,7 @@ form.upload ...@@ -151,7 +151,7 @@ form.upload
font-size: 14pt font-size: 14pt
font-weight: normal font-weight: normal
color: #eee color: #eee
&:empty &:not(h2):empty
display: none display: none
& + .image & + .image
border-top-left-radius: 4px border-top-left-radius: 4px
...@@ -168,5 +168,5 @@ form.upload ...@@ -168,5 +168,5 @@ form.upload
font-size: 11pt font-size: 11pt
font-weight: normal font-weight: normal
color: #eee color: #eee
&:empty &:not(div):empty
display: none display: none
\ No newline at end of file
#!/bin/sh
IMAGE=k8r.eu/justjanne/imghost-frontend
TAGS=$(git describe --always --tags HEAD)
docker build -t $IMAGE:$TAGS .
docker tag $IMAGE:$TAGS $IMAGE:latest
echo Successfully tagged $IMAGE:latest
docker push $IMAGE:$TAGS
docker push $IMAGE:latest
\ No newline at end of file
#!/bin/sh
IMAGE=k8r.eu/justjanne/imghost-frontend
TAGS=$(git describe --always --tags HEAD)
DEPLOYMENT=imghost-frontend
POD=imghost-frontend
kubectl -n imghost set image deployment/$DEPLOYMENT $POD=$IMAGE:$TAGS
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment