You are configuring a continuous integration pipeline using Cloud Build to automate the deployment of new container images to Google Kubernetes Engine (GKE). The pipeline builds the application from its source code, runs unit and integration tests in separate steps, and pushes the container to Container Registry. The application runs on a Python web server.
The Dockerfile is as follows:
FROM python:3.7-alpine -
COPY . /app -
WORKDIR /app -
RUN pip install -r requirements.txt
CMD [ "gunicorn", "-w 4", "main:app" ]
You notice that Cloud Build runs are taking longer than expected to complete. You want to decrease the build time. What should you do? (Choose two.)
__rajan__
7 months, 1 week agopurushi
8 months, 3 weeks agotelp
1 year, 3 months agoomermahgoub
1 year, 3 months agoomermahgoub
1 year, 3 months agoTNT87
1 year, 4 months agozellck
1 year, 4 months agosharath25
1 year, 4 months agotest010101
1 year, 4 months agogardislan18
1 year, 4 months agotest010101
1 year, 4 months ago