Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
v2.0.4 (#20)
Browse files Browse the repository at this point in the history
* fix: Dockerfile to reduce vulnerabilities (#18)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-ALPINE315-OPENSSL-2941810
- https://snyk.io/vuln/SNYK-ALPINE315-OPENSSL-2941810
- https://snyk.io/vuln/SNYK-ALPINE315-OPENSSL-3314628
- https://snyk.io/vuln/SNYK-ALPINE315-OPENSSL-3314629
- https://snyk.io/vuln/SNYK-ALPINE315-ZLIB-2976173

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* Fixes #17 entrypoint.sh not executable (#19)

---------

Co-authored-by: snyk-bot <snyk-bot@snyk.io>
  • Loading branch information
infamousjoeg and snyk-bot authored Feb 10, 2023
1 parent e4d7afe commit 35d7bbc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM alpine:3.15.4
FROM alpine:3.15

RUN apk add --no-cache bash curl jq

COPY entrypoint.sh /entrypoint.sh

RUN chmod +x /entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 35d7bbc

Please sign in to comment.