We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi @Theodus,
With the following dockerfile
dockerfile
FROM ponylang/ponyc:0.52.5-alpine WORKDIR /src/main COPY corral.json ./ RUN corral fetch COPY main.pony ./ RUN apk update && apk upgrade --no-cache RUN apk add openssl-dev RUN corral run ponyc -- -Dopenssl_1.1.x -Dstatic -bjennet FROM alpine:3.16 RUN apk --no-cache add libatomic libexecinfo libgcc WORKDIR /opt/ COPY --from=0 /src/main/jennet ./ CMD ./jennet
I can run jennet in https://github.com/the-benchmarker/web-frameworks
jennet
But I can not use the latest alpine version since libexecinfo.so.1 is not shipped with alpine anymore.
libexecinfo.so.1
Do you have a replacement, so a the latest alpine could be used ?
Regards,
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi @Theodus,
With the following
dockerfile
I can run
jennet
in https://github.com/the-benchmarker/web-frameworksBut I can not use the latest alpine version since
libexecinfo.so.1
is not shipped with alpine anymore.Do you have a replacement, so a the latest alpine could be used ?
Regards,
The text was updated successfully, but these errors were encountered: