
- don't install pymysql: mysqlclient is the package we need [1] - use newly packaged python3-mysql from epel and drop development dependencies [2] [1]: https://docs.djangoproject.com/en/3.0/ref/databases/#mysql-db-api-drivers [2]: https://github.com/ansible-community/ara/issues/151 Change-Id: Iadee9e80fa42ce9fbf3f8318bbc4537cf144468b
21 lines
1.2 KiB
Bash
Executable File
21 lines
1.2 KiB
Bash
Executable File
#!/bin/bash -x
|
|
# Builds an ARA API server container image using the latest PyPi packages on CentOS 8.
|
|
build=$(buildah from centos:8)
|
|
|
|
# Get all updates, install pip, database backends and gunicorn application server
|
|
# This lets users swap easily from the sqlite default to mysql or postgresql just by tweaking settings.yaml.
|
|
# Note: We use the packaged versions of psycopg2 and mysql python libraries so
|
|
# we don't need to install development libraries before installing them from PyPi.
|
|
buildah run "${build}" -- /bin/bash -c "dnf update -y && dnf install -y epel-release && dnf install -y python3-pip python3-gunicorn python3-psycopg2 python3-mysql && dnf clean all"
|
|
|
|
# Install ara from source with API server extras for dependencies (django & django-rest-framework)
|
|
buildah run "${build}" -- /bin/bash -c "pip3 install ara[server]"
|
|
|
|
# Set up the container to execute SQL migrations and run the API server with gunicorn
|
|
buildah config --env ARA_BASE_DIR=/opt/ara "${build}"
|
|
buildah config --cmd "bash -c '/usr/local/bin/ara-manage migrate && /usr/bin/gunicorn-3 --workers=4 --access-logfile - --bind 0.0.0.0:8000 ara.server.wsgi'" "${build}"
|
|
buildah config --port 8000 "${build}"
|
|
|
|
# Commit this container to an image name
|
|
buildah commit "${build}" "${1:-$USER/ara-api}"
|