forgot quotes around command
This commit is contained in:
parent
9f3abca5a8
commit
63f2412fe2
@ -40,8 +40,7 @@ build_and_push_container:
|
||||
- docker build -t ldooks/dragon-bot:$CI_PIPELINE_ID -t ldooks/dragon-bot:latest .
|
||||
- docker push ldooks/dragon-bot:latest
|
||||
- docker push ldooks/dragon-bot:$CI_PIPELINE_ID
|
||||
- docker run --rm daangn/argocd-cli sh -c /usr/local/bin/argocd --insecure --server 192.168.1.205 --auth-token $ARGOCD_TOKEN app sync dragon-bot
|
||||
|
||||
- docker run --rm daangn/argocd-cli sh -c "/usr/local/bin/argocd --insecure --server 192.168.1.205 --auth-token $ARGOCD_TOKEN app sync dragon-bot"
|
||||
rules:
|
||||
- changes:
|
||||
- app/*
|
||||
|
@ -1,6 +1,6 @@
|
||||
FROM python:3.8 as build
|
||||
ADD app/requirements.txt /requirements.txt
|
||||
RUN apt-get update && apt-get install -y libmagickwand-dev && pip install -r requirements.txt
|
||||
RUN apt-get update && apt-get install -y libmagickwand-dev && pip install -rq requirements.txt
|
||||
|
||||
FROM python:3.8-slim
|
||||
RUN apt-get update && apt-get install -y libmagickwand-dev
|
||||
|
Loading…
x
Reference in New Issue
Block a user