Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
FROM alpine:3.19.1

ENV FOSSA_TELEMETRY_SCOPE=off
ENV FOSSA_API_KEY=<secret>

# Install FOSSA CLI and clean up aftwards
RUN apk add -v --no-cache curl bash
RUN curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install-latest.sh | bash
Expand All @@ -12,4 +15,7 @@ RUN fossa --version
VOLUME /project
WORKDIR /project

# Default command
CMD [ "fossa", "-h" ]

ENTRYPOINT [ "fossa" ]