Spaces:
Build error
Build error
File size: 338 Bytes
0d17912 fdfa48b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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/src/create_app.py |