rust-node/Dockerfile

5 lines
134 B
Docker
Raw Normal View History

2023-12-19 22:42:21 +00:00
FROM rust:latest
RUN apt update && apt install -y nodejs
2023-12-28 22:45:26 +00:00
RUN cargo install cargo-deb
2023-12-19 22:42:21 +00:00
ENTRYPOINT ["dockerd-entrypoint.sh"]
CMD ["bash"]