mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
9 lines
299 B
Plaintext
9 lines
299 B
Plaintext
FROM alpine
|
|
RUN apk add --no-cache tini
|
|
|
|
## Upgrade OpenSSL libraries to mitigate known vulnerabilities as the current Alpine image has not been patched yet.
|
|
RUN apk update && apk upgrade --no-cache libcrypto3 libssl3
|
|
|
|
|
|
COPY infisical /bin/infisical
|
|
ENTRYPOINT ["/sbin/tini", "--", "/bin/infisical"] |