Skip to content

Commit

Permalink
adding docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmerz committed Nov 3, 2020
1 parent 7bb3b66 commit 34f9635
Show file tree
Hide file tree
Showing 4 changed files with 1,670 additions and 1,388 deletions.
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.idea
*.pyc
**/bower_components
**/components
**/.vscode
.tmp
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ARG CKAN_BASE
FROM ${CKAN_BASE}

RUN mkdir -p /ckan/src/ecosis
WORKDIR /ckan/src
COPY ./ ecosis/

RUN pip install -e /ckan/src/ecosis
RUN pip install -r /ckan/src/ecosis/requirements.txt
Loading

0 comments on commit 34f9635

Please sign in to comment.