mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-10 07:58:15 -05: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"] |