Skip to content

Commit

Permalink
Merge pull request #573 from aboutcode-org/571_572_docker_issues
Browse files Browse the repository at this point in the history
Fixed #571 #572 - Fixed the entry point and install requirement
  • Loading branch information
chinyeungli committed Sep 16, 2024
2 parents f33153d + a7bf658 commit 01c7490
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
==============================
Changelog

2024-09-16
Release 11.0.2

* Fixed the installation issues with docker (#571, #572)


2024-08-06
Release 11.0.1

* Update doc formatting
* Added fields type and types description into the spec
* Update link references of ownership from nexB to aboutcode-org

Signed-off-by: Chin Yeung Li <[email protected]>


2024-07-15
Release 11.0.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ RUN bash -c "source ./configure"
# Set entrypoint to be the aboutcode command, allows to run the generated docker image directly with the aboutcode arguments:
# `docker run (...) <containername> <about arguments>`
# Example: docker run --rm --name "aboutcode" -v ${PWD}:/project -v /tmp/result:/result aboutcode-toolkit attrib /project /result/c.html
ENTRYPOINT ["./bin/about"]
ENTRYPOINT ["./about"]
2 changes: 1 addition & 1 deletion about.ABOUT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
about_resource: .
name: AboutCode-toolkit
version: 11.0.1
version: 11.0.2
author: Jillian Daguil, Chin Yeung Li, Philippe Ombredanne, Thomas Druez
copyright: Copyright (c) nexB Inc.
description: |
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ install_requires =
license_expression >= 0.94
openpyxl
packageurl_python >= 0.9.0
requests
saneyaml


Expand Down
2 changes: 1 addition & 1 deletion src/attributecode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import saneyaml

__version__ = '11.0.1'
__version__ = '11.0.2'

__about_spec_version__ = '4.0.0'

Expand Down

0 comments on commit 01c7490

Please sign in to comment.