add ssl compatibility
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-07-03 22:46:41 +00:00
parent a123d0fecd
commit 0729a4454b
2 changed files with 20 additions and 1 deletions

View File

@ -23,7 +23,7 @@ ENV TZ=UTC
ENV LOG_LEVEL=9
#Get required packages
RUN apk update && apk add tzdata curl shadow bash xz git procps nodejs npm nano
RUN apk update && apk add tzdata curl shadow bash xz git procps nodejs npm nano openssl
#Make folders
RUN mkdir /config && \
@ -57,5 +57,6 @@ RUN chmod +x /cronicle-prepare.sh && \
chown -R ${PUID}:${PGID} /app /config
EXPOSE 3012
EXPOSE 3013
ENTRYPOINT [ "/init" ]