Skip to content
Snippets Groups Projects
Commit d3852814 authored by Bastien Abadie's avatar Bastien Abadie
Browse files

Docker base image

parent 578c6f0d
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ stages: ...@@ -3,7 +3,7 @@ stages:
backend-tests: backend-tests:
stage: test stage: test
image: python:3.5-alpine image: registry.gitlab.com/arkindex/backend:base-0.8.0
services: services:
- postgres:latest - postgres:latest
...@@ -20,11 +20,10 @@ backend-tests: ...@@ -20,11 +20,10 @@ backend-tests:
DB_PORT: 5432 DB_PORT: 5432
before_script: before_script:
- apk --update add postgresql-dev libjpeg-turbo-dev gcc musl-dev zlib-dev libmagic libxml2-dev libxslt-dev git - apk --update add build-base
- pip install codecov - pip install -r tests-requirements.txt codecov
script: script:
- python setup.py test - python setup.py test
- pip install .[test]
- flake8 - flake8
- codecov - codecov
FROM python:3.5-alpine as base FROM registry.gitlab.com/arkindex/backend:base-0.8.0
FROM base as staging ARG FRONTEND_BRANCH=master
ARG GITLAB_TOKEN="gTPA5UQYesSuKMCRM2r_"
# Add system dependencies, use cache by copying requirements
RUN apk add --update --no-cache postgresql-dev jpeg-dev build-base gzip zlib-dev libmagic libxml2-dev libxslt-dev
# Install arkindex and its deps # Install arkindex and its deps
# Uses a source archive instead of full local copy to speedup docker build # Uses a source archive instead of full local copy to speedup docker build
COPY dist/arkindex-*.tar.gz /tmp/arkindex.tar.gz COPY dist/arkindex-*.tar.gz /tmp/arkindex.tar.gz
RUN pip install --install-option="--prefix=/build" /tmp/arkindex.tar.gz gunicorn RUN pip install /tmp/arkindex.tar.gz gunicorn
# Restart from base, using staging build
FROM base
ARG FRONTEND_BRANCH=master
ARG GITLAB_TOKEN="gTPA5UQYesSuKMCRM2r_"
# Import from staging the python build, so the final image is slimmer
# and has no build tool
COPY --from=staging /build /usr
ENV PYTHONPATH=/usr/lib/python3.5/site-packages
# Add runtime system deps
RUN apk add --update --no-cache wget gzip libmagic git unzip libpq libxslt libjpeg
# Add unprivilegied user
RUN addgroup -g 1000 teklia && adduser -D -u 1000 -G teklia ark
# Allow access to medias and logs # Allow access to medias and logs
RUN mkdir -p /medias/staging /medias/iiif /logs /workers RUN mkdir -p /medias/staging /medias/iiif /logs /workers
......
include VERSION include VERSION
include requirements.txt include requirements.txt
include base/requirements.txt
include tests-requirements.txt include tests-requirements.txt
include arkindex/documents/*.xsl include arkindex/documents/*.xsl
recursive-include arkindex/templates *.html recursive-include arkindex/templates *.html
......
...@@ -3,30 +3,36 @@ TUNNEL_HOST:=panetios-dev ...@@ -3,30 +3,36 @@ TUNNEL_HOST:=panetios-dev
TUNNEL_PORT:=8000 TUNNEL_PORT:=8000
VERSION=$(shell git rev-parse --short HEAD) VERSION=$(shell git rev-parse --short HEAD)
TAG=arkindex-app TAG_APP=arkindex-app
.PHONY: build TAG_BASE=arkindex-base
.PHONY: build base
all: clean build all: clean build
base: require-version
echo $(version) > $(ROOT_DIR)/VERSION
docker build $(ROOT_DIR)/base -t $(TAG_BASE):$(version) -t $(TAG_BASE):latest -t registry.gitlab.com/arkindex/backend:base-$(version)
docker push registry.gitlab.com/arkindex/backend:base-$(version)
git commit $(ROOT_DIR)/VERSION -m 'Bump to $(version)'
clean: clean:
rm -rf *.egg-info build dist .eggs rm -rf *.egg-info build dist .eggs
find . -name '*.pyc' -exec rm {} \; find . -name '*.pyc' -exec rm {} \;
build: build:
python setup.py sdist python setup.py sdist
docker build $(ROOT_DIR) -t $(TAG):$(VERSION) -t $(TAG):latest docker build $(ROOT_DIR) -t $(TAG_APP):$(VERSION) -t $(TAG_APP):latest
publish-version: require-docker-auth publish-version: require-docker-auth
$(MAKE) build TAG=registry.gitlab.com/arkindex/backend $(MAKE) build TAG_APP=registry.gitlab.com/arkindex/backend
docker push registry.gitlab.com/arkindex/backend:$(VERSION) docker push registry.gitlab.com/arkindex/backend:$(VERSION)
latest: latest:
$(MAKE) publish-version VERSION=latest $(MAKE) publish-version VERSION=latest
release: require-version release:
echo $(version) > $(ROOT_DIR)/VERSION version:=$(shell cat VERSION)
$(MAKE) publish-version VERSION=$(version) $(MAKE) publish-version VERSION=$(version)
git commit $(ROOT_DIR)/VERSION -m 'Release $(version)'
git tag $(version) git tag $(version)
worker: worker:
......
FROM python:3.5-alpine as base
FROM base as staging
# Add system dependencies, use cache by copying requirements
RUN apk add --update --no-cache postgresql-dev jpeg-dev build-base gzip zlib-dev libmagic libxml2-dev libxslt-dev
# Install long buildtime deps
# Uses a source archive instead of full local copy to speedup docker build
ADD requirements.txt /requirements.txt
RUN pip install --install-option="--prefix=/build" -r requirements.txt
# Restart from base, using staging build
FROM base
# Import from staging the python build, so the final image is slimmer
# and has no build tool
COPY --from=staging /build /usr
ENV PYTHONPATH=/usr/lib/python3.5/site-packages
# Add runtime system deps
RUN apk add --update --no-cache wget gzip libmagic git unzip libpq libxslt libjpeg
# Add unprivilegied user
RUN addgroup -g 1000 teklia && adduser -D -u 1000 -G teklia ark
Django==2.1
elasticsearch==6.2.0
ijson==2.3
lxml==4.2.3
openpyxl==2.4.9
Pillow==4.3.0
psycopg2==2.7.3.2
python-Levenshtein==0.12.0
redis==2.10.6
# -r ./base/requirements.txt
celery==4.2.0 celery==4.2.0
celery_once==2.0.0 celery_once==2.0.0
certifi==2017.7.27.1 certifi==2017.7.27.1
chardet==3.0.4 chardet==3.0.4
Django==2.1
django-enumfields==0.10.0 django-enumfields==0.10.0
djangorestframework==3.7.1 djangorestframework==3.7.1
django-webpack-loader==0.5.0 django-webpack-loader==0.5.0
elasticsearch==6.2.0
et-xmlfile==1.0.1 et-xmlfile==1.0.1
gitpython==2.1.11 gitpython==2.1.11
idna==2.6 idna==2.6
ijson==2.3
jdcal==1.3 jdcal==1.3
lxml==4.2.3
olefile==0.44 olefile==0.44
openpyxl==2.4.9
Pillow==4.3.0
psycopg2==2.7.3.2
python-Levenshtein==0.12.0
python-magic==0.4.15 python-magic==0.4.15
python-memcached==1.59 python-memcached==1.59
pytz==2017.2 pytz==2017.2
redis==2.10.6
requests==2.18.4 requests==2.18.4
roman==2.0.0 roman==2.0.0
urllib3==1.22 urllib3==1.22
#!/usr/bin/env python #!/usr/bin/env python
import os.path
from setuptools import setup, find_packages from setuptools import setup, find_packages
def requirements(path):
assert os.path.exists(path), 'Missing requirements {}'.format(path)
with open(path) as f:
return f.read().splitlines()
with open('VERSION') as f: with open('VERSION') as f:
VERSION = f.read() VERSION = f.read()
with open('requirements.txt') as f: install_requires = requirements('requirements.txt') + requirements('base/requirements.txt')
requirements = f.read().splitlines() tests_requires = requirements('tests-requirements.txt')
with open('tests-requirements.txt') as f:
tests_requirements = f.read().splitlines()
setup( setup(
name='arkindex', name='arkindex',
...@@ -17,11 +22,11 @@ setup( ...@@ -17,11 +22,11 @@ setup(
author='Teklia', author='Teklia',
author_email='abadie@teklia.com', author_email='abadie@teklia.com',
url='https://arkindex.teklia.com', url='https://arkindex.teklia.com',
install_requires=requirements, install_requires=install_requires,
test_suite='arkindex.project.runtests.run', test_suite='arkindex.project.runtests.run',
tests_require=tests_requirements, tests_require=tests_requires,
extras_require={ extras_require={
'test': tests_requirements, 'test': tests_requires,
}, },
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment