You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
423 B
17 lines
423 B
FROM node:19-bullseye as frontend
|
|
|
|
COPY . /source
|
|
RUN cd /source/frontend && npm install && npm run build
|
|
|
|
FROM rust:1.65-buster as backend
|
|
|
|
COPY . /source
|
|
COPY --from=frontend /source/frontend/dist /source/frontend/dist
|
|
RUN cd /source && cargo build --release -p zlib-searcher
|
|
|
|
FROM ubuntu:22.04
|
|
|
|
COPY --from=backend /source/target/release/zlib-searcher /zlib-searcher
|
|
|
|
CMD ["/zlib-searcher", "run", "-b", "0.0.0.0:7070"]
|