Spaces:
Sleeping
Sleeping
File size: 368 Bytes
b1a6fa7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM rust:latest
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
RUN git clone https://github.com/sharktide/ipxml
WORKDIR ipxml
RUN cargo build
RUN target/debug/ipxml cc --ipxml examples/FireNet/app.ipxml --out model.ipxmodel.import
CMD ["target/debug/ipxml", "run", "model.ipxmodel.import", "--serve", "--port", "7860"] |