rust-node/Dockerfile
Neshura 443cbe5b8e
All checks were successful
Build Custom rust-node image / build-container (push) Successful in 2m55s
Add cargo-deb to image
2023-12-28 22:45:26 +00:00

5 lines
134 B
Docker

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