Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Commits
b9e59a30
Commit
b9e59a30
authored
6 years ago
by
Bastien Abadie
Browse files
Options
Downloads
Patches
Plain Diff
Working setup.py + docker
parent
ce8a8fe2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
Dockerfile
+5
-8
5 additions, 8 deletions
Dockerfile
setup.py
+2
-2
2 additions, 2 deletions
setup.py
with
9 additions
and
10 deletions
.gitignore
+
2
−
0
View file @
b9e59a30
...
...
@@ -2,3 +2,5 @@
db.sqlite3
playbook.retry
*.egg-info
build
dist
This diff is collapsed.
Click to expand it.
Dockerfile
+
5
−
8
View file @
b9e59a30
...
...
@@ -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"]
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
2
View file @
b9e59a30
#!/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
'
,
],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment