-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Re-enable build and publish of Docker Image (#263)
* fix: update `Dockerfile` to use Python 3.10 Signed-off-by: Paul Horton <[email protected]> * ci: renable publishing of Docker Images Signed-off-by: Paul Horton <[email protected]>
- Loading branch information
Showing
2 changed files
with
18 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM python:3.9.7-slim-buster | ||
FROM python:3.10-slim-buster | ||
|
||
ARG VERSION | ||
|
||
COPY ./dist /tmp/dist | ||
RUN pip install cyclonedx-bom==${VERSION} --find-links file:///tmp/dist | ||
ENTRYPOINT ["cyclonedx-py"] | ||
ENTRYPOINT ["cyclonedx-bom"] |