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

Working setup.py + docker

parent ce8a8fe2
No related branches found
No related tags found
No related merge requests found
......@@ -2,3 +2,5 @@
db.sqlite3
playbook.retry
*.egg-info
build
dist
......@@ -7,20 +7,17 @@ ARG GITLAB_TOKEN="gTPA5UQYesSuKMCRM2r_"
# Add system dependencies
RUN apk add --update --no-cache postgresql-dev jpeg-dev build-base wget gzip
# Use current backend source code
ADD . /backend
# Setup frontend
ENV FRONTEND_DIR="/frontend/dist"
RUN mkdir /frontend && wget --header "PRIVATE-TOKEN: $GITLAB_TOKEN" https://gitlab.com/arkindex/frontend/-/jobs/artifacts/$FRONTEND_BRANCH/download?job=frontend -O /tmp/frontend.zip && unzip /tmp/frontend.zip -d /frontend && rm /tmp/frontend.zip
# Install arkindex
RUN pip3 install /backend
ADD . /backend
RUN cd /backend && python setup.py install
# Setup gunicorn
RUN pip3 install gunicorn
# Setup frontend
ENV FRONTEND_DIR="/frontend/dist"
RUN wget --header "PRIVATE-TOKEN: $GITLAB_TOKEN" https://gitlab.com/arkindex/frontend/-/jobs/artifacts/$FRONTEND_BRANCH/download?job=frontend -O /tmp/frontend.zip && unzip /tmp/frontend.zip -d /frontend && rm /tmp/frontend.zip
# Run through supervisor
EXPOSE 80
WORKDIR /backend
CMD ["gunicorn", "--access-logfile=-", "--capture-output", "--bind=0.0.0.0:80", "--chdir=/backend", "arkindex.project.wsgi"]
#!/usr/bin/env python
from distutils.core import setup
from setuptools import setup, find_packages
with open('VERSION') as f:
VERSION = f.read()
......@@ -15,7 +15,7 @@ setup(
author_email='abadie@teklia.com',
url='https://arkindex.teklia.com',
install_requires=requirements,
packages=['arkindex'],
packages=find_packages(),
scripts=[
'arkindex/manage.py',
],
......
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