Commit 53f841c9 authored by zimniy's avatar zimniy
Browse files

Linter fixes 4

parent 6f04055f
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ build:
    GIT_DEPTH: 1
  script:
    - docker pull "${CI_REGISTRY_IMAGE}:latest" || true
    - docker build --build-arg DEPENDENCIES_RUNTIME="${DEPENDENCIES_RUNTIME}" --cache-from "${CI_REGISTRY_IMAGE}:latest" -t "${CI_REGISTRY_IMAGE}:temp-${CI_PIPELINE_IID}" -f ./Dockerfile .
    - docker build --build-arg DEPENDENCIES_RUNTIME="${APPS}" --cache-from "${CI_REGISTRY_IMAGE}:latest" -t "${CI_REGISTRY_IMAGE}:temp-${CI_PIPELINE_IID}" -f ./Dockerfile .
    - docker push "${CI_REGISTRY_IMAGE}:temp-$CI_PIPELINE_IID"

##########################################################################################################
+1 −1
Original line number Diff line number Diff line
@@ -3,6 +3,6 @@ FROM pipelinecomponents/ansible-lint:latest
ENV LANG C.UTF-8

#ARG DEPENDENCIES_RUNTIME="git openssh-client rsync"
RUN apk add --no-cache ${DEPENDENCIES_RUNTIME}
RUN apk add --no-cache $DEPENDENCIES_RUNTIME

WORKDIR /opt/ansible