Rust + NodeJS Image
723
A rust image with built-in nodejs for various purposes.
WARNING: This is not a image to serve projects with! Consider it as a builder image. use multi-stage builds as stated below.
NOTE: This image is only for building stage, Do not use this as final image in dockerfiles.
To diploy a node site based on rust packages
FROM 15012002/rust-node as builder
WORKDIR /usr/app
copy . .
RUN cargo update && npm install
RUN cargo build && npm run build
FROM nginx:latest
COPY --from=builder /usr/app/dist /usr/share/nginx/html
NOTE: The Dockerfile above wont work yet it sets a fair demonstration of how it should be used.
This image comes with bash support out-of-the box.
Just click the CLI button in your docker desktop or via the command line:
docker exec -it mycontainer sh
Feel free to build this image manually by cloning its github repository
To build the image, make sure you have docker installed and use:
docker build . -t rust-node
Content type
Image
Digest
sha256:6353eee3d…
Size
601 MB
Last updated
over 1 year ago
docker pull 15012002/rust-node