Skip to content

Commit

Permalink
Fix missing double quotes in dcat extension install
Browse files Browse the repository at this point in the history
  • Loading branch information
vjf authored Jun 11, 2024
1 parent bc476fb commit 6fa9e86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ckan/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ RUN pip install -e "git+https://github.com/EnviDat/ckanext-composite.git#egg=cka
RUN pip install -e "git+https://github.com/AuScope/ckanext-zippreview.git#egg=ckanext-zippreview"

### DCAT plugins ###
RUN pip install -r https://raw.githubusercontent.com/ckan/ckanext-dcat/master/requirements.txt
RUN pip install -e git+https://github.com/AuScope/ckanext-dcat.git@auscope_customise#egg=ckanext-dcat
RUN pip install -r "https://raw.githubusercontent.com/ckan/ckanext-dcat/master/requirements.txt"
RUN pip install -e "git+https://github.com/AuScope/ckanext-dcat.git@auscope_customise#egg=ckanext-dcat"

# Clone the extension(s) your are writing for your own project in the `src` folder
# to get them mounted in this image at runtime
Expand Down

0 comments on commit 6fa9e86

Please sign in to comment.