Skip to content

Commit

Permalink
adding the configuration to deploy yolov5 in in app engine (ultralyti…
Browse files Browse the repository at this point in the history
…cs#964)

* add the configuration to deploy yolov5 in a docker container in app engine on google cloud

* remove the duplicated requirements, place the google app engine files in utils

* remove the unused requirements

Co-authored-by: guilhembau <guilhem@6dbytes.com>
  • Loading branch information
Guilhen and guilhembau committed Sep 22, 2020
1 parent 5bcd19b commit c839123
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
25 changes: 25 additions & 0 deletions utils/google_app_engine/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM gcr.io/google-appengine/python

# Create a virtualenv for dependencies. This isolates these packages from
# system-level packages.
# Use -p python3 or -p python3.7 to select python version. Default is version 2.
RUN virtualenv /env -p python3

# Setting these environment variables are the same as running
# source /env/bin/activate.
ENV VIRTUAL_ENV /env
ENV PATH /env/bin:$PATH

RUN apt-get update && apt-get install -y python-opencv

# Copy the application's requirements.txt and run pip to install all
# dependencies into the virtualenv.
ADD requirements.txt /app/requirements.txt
RUN pip install -r /app/requirements.txt

# Add the application source code.
ADD . /app

# Run a WSGI server to serve the application. gunicorn must be declared as
# a dependency in requirements.txt.
CMD gunicorn -b :$PORT main:app
4 changes: 4 additions & 0 deletions utils/google_app_engine/additional_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# add these requirements in your app on top of the existing ones
pip==18.1
Flask==1.0.2
gunicorn==19.9.0
14 changes: 14 additions & 0 deletions utils/google_app_engine/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
runtime: custom
env: flex

service: yolov5app

liveness_check:
initial_delay_sec: 600

manual_scaling:
instances: 1
resources:
cpu: 1
memory_gb: 4
disk_size_gb: 20

0 comments on commit c839123

Please sign in to comment.