Spaces:
Sleeping
Sleeping
File size: 373 Bytes
be0160b e278d42 c4ebf10 | 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/inception_v3/app.ipxml --out model.ipxmodel.import
CMD ["target/debug/ipxml", "run", "model.ipxmodel.import", "--serve", "--port", "7860"] |