rust-node/Dockerfile
Neshura df3f998566
All checks were successful
Build Custom rust-node image / build-container (push) Successful in 2m55s
Add cargo-deb dependency
2023-12-28 22:48:36 +00:00

5 lines
146 B
Docker

FROM rust:latest
RUN apt update && apt install -y nodejs liblzma-dev
RUN cargo install cargo-deb
ENTRYPOINT ["dockerd-entrypoint.sh"]
CMD ["bash"]