I'm trying to build a build pipeline for my application and share a specific folder between steps using volumes.
The problem is because on my first step (unit-tests) I have to install all the libs on the requirements.txt to be able to run my unit tests. And after that I have to build my application running my Dockerfile in other step. I don't want to re-install all the requirements again, so, I thought in copy the requirements already installed and paste them inside the docker build step. Am I able to do that? I followed this thread and tried to replicate to my reality but I still have problems.
Passing files from Google Cloud Container Builder to Docker build task
Here is a sample of what I've done:
My cloudbuild.yaml:
- id: unit-tests
name: python:3-alpine
entrypoint: sh
dir: my-dir
args:
- -c
- |
apk add --virtual build_dependencies build-base
apk add --no-cache libstdc++
pip install --no-cache-dir -r requirements.txt
apk del build_dependencies
python -m unittest discover --verbose
cp -Rv /usr/local/lib/python3.8/site-packages/* /requirements
volumes:
- name: 'requirements'
path: /requirements
- id: docker-build
name: gcr.io/cloud-builders/docker
dir: my-dir
args:
- build
- --tag=gcr.io/${PROJECT_ID}/eta:test
- '.'
volumes:
- name: 'requirements'
path: /requirements
waitFor: ['unit-tests']
images:
- 'gcr.io/$PROJECT_ID/eta:test'
timeout: 3600s
And here is my Dockerfile:
from python:3-alpine
RUN set -eux; \
apk add --virtual build_dependencies build-base; \
apk add --no-cache libstdc++; \
apk del build_dependencies;
COPY /requirements/* /usr/local/lib/python3.8/site-packages/
COPY . /app
RUN ["chmod", "+x", "/app/entry.sh"]
WORKDIR /app
ENTRYPOINT [ "/app/entry.sh" ]
I can't locate the /requirements folder inside my dockerfile, here is the error message:
Step #1 - "docker-build": Step 3/7 : COPY /requirements/* /usr/local/lib/python3.8/site-packages/
Step #1 - "docker-build": COPY failed: no source files were specified
Finished Step #1 - "docker-build"
ERROR
ERROR: build step 1 "gcr.io/cloud-builders/docker" failed: step exited with non-zero status: 1
I'm not sure if what I'm doing is the right way.
The Cloud Build (VM) persists
/workspace
across steps so you may create e.g./workspace/requirements
and userequirements
in subsequent steps.Then:
And
Dockerfile
:And:
Yields:
The problem using
volumes
is that these won't be in the docker build's context. So, if you'd prefer to use volumes, you'd need to copy the volume's content into/workspace
.Then, when you run the
gcr.io/cloud-builders/docker
step,/workspace
is mounted as the root and so you may access/workspace/requirements
as/requirements
:Then:
Yields: