You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I would like to report a precompilation failure of EzXML which in turns cause Genie.jl to fail. I have consulted with the Genie Team @AbhimanyuAryan and it was pointed out that it could OS build issue.
For your reference, below is my Dockerfile and Stackrace which is from the process of packaging Julia application in a docker image using Alpine Linux image.
Dockerfile:
FROM julia:1.6.5-alpine
RUN apk --no-cache update \
apk add upgrade \
apk --no-cache add apk-tools \
apk --no-cache add build-base
RUN apk add g++
# Install python/pipENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3 && ln -sf python /usr/bin/python
RUN python3 -m ensurepip
RUN pip3 install --no-cache --upgrade pip setuptools
RUN apk add --no-cache py-pip py3-numpy py3-scipy
RUN rm -rf /var/cache/apk/*
# to set home directoryENV JULIA_PROJECT @.
WORKDIR /home
ENV VERSION 1
ADD . /home
# RUN cd /deploy RUN julia deploy/packagecompile.jl
ENTRYPOINT ["julia", "-JApp.so", "-t", "auto", "-L", "src/main.jl", "-e", "App.start()"]
This error is observed only with alpine version of julia 1.6.5 image, but it builds and works on buster version.
May I ask what could be cause of this error and would appreciate your help and advice to resolve this issue.
Thanks, look forward to hearing from you !
The text was updated successfully, but these errors were encountered:
Hi, I would like to report a precompilation failure of
EzXML
which in turns cause Genie.jl to fail. I have consulted with theGenie
Team @AbhimanyuAryan and it was pointed out that it could OS build issue.For your reference, below is my
Dockerfile
andStackrace
which is from the process of packaging Julia application in a docker image using Alpine Linux image.Dockerfile:
Error:
This error is observed only with
alpine
version of julia 1.6.5 image, but it builds and works onbuster
version.May I ask what could be cause of this error and would appreciate your help and advice to resolve this issue.
Thanks, look forward to hearing from you !
The text was updated successfully, but these errors were encountered: