Spaces:
Build error
Build error
FROM node:20.10.0 | |
WORKDIR /opt | |
RUN apt-get update \ | |
&& apt install cmake clang swig gcc python3.11 python3-venv python3-dev -y \ | |
&& rm -rf /var/lib/apt/lists/* | |
COPY ./Makefile /opt/Makefile | |
COPY ./pyproject.toml /opt/pyproject.toml | |
RUN make .venv | |
COPY ./src /opt/src | |
# Runtime args | |
CMD .venv/bin/python /opt/create_app.py |