I am trying to deploy a sample web application built in rust. I have added the health check as well which when pinged locally(with the server running locally as well) responds with an HTTP 200 OK response.
Here is my fly.toml file :
I’m traveling at the moment, so I haven’t had a chance to try your app, but perhaps you can try mine? Put the following Dockerfile in an empty directory, run fly launch (feel free to accept the defaults), and then fly deploy.
# syntax = docker/dockerfile:1
# Shamelessly stolen from:
# https://dev.to/rogertorres/first-steps-with-docker-rust-30oi
# https://gist.github.com/jbenner-radham/6bc22f923d42438ff6bf5668d9e0050e
#
# Changes:
# * changed to slim image
# * bing to 0.0.0.0 instead of 127.0.0.1
# * added a loop
# * added a second docker build stage to produce a minimal image
# Rust as the base image
FROM rust:slim as build
# 1. Create a new empty shell project
RUN USER=root cargo new --bin simple-web-server
WORKDIR /simple-web-server
# 2. Copy our manifests
COPY <<-"EOF" ./Cargo.toml
[package]
name = "simple-web-server"
version = "0.1.0"
authors = ["James Benner <james.benner@gmail.com>"]
[dependencies]
time = "0.1"
EOF
# 3. Build only the dependencies to cache them
RUN cargo build
RUN rm src/*.rs
# 4. Now that the dependency is built, copy your source code
COPY <<-"EOF" src/main.rs
extern crate time;
use std::io::Write;
use std::net::TcpListener;
fn main() {
// Bind allows us to create a connection on the port
// and gets it ready to accept connections.
let listener = TcpListener::bind("0.0.0.0:8080").unwrap();
// The listener's accept method waits or 'blocks' until
// we have a connection and then returns a new TcpStream
// that we can read and write data to.
loop {
let mut stream = listener.accept().unwrap().0;
let message = "Hello, World!";
let format = "%a, %d %b %Y %T GMT";
let time = time::now_utc();
let response = format!("HTTP/1.1 200 OK\r\n\
Date: {}\r\n\
Content-Type: text/html; charset=utf-8\r\n\
Content-Length: {}\r\n\
\r\n\
{}",
time::strftime(format, &time).unwrap(),
message.len(),
message);
let _ = stream.write(response.as_bytes());
}
}
EOF
# 5. Build for release.
RUN rm -f ./target/release/deps/simple-web-server*
RUN cargo install --path .
# Minimal image for execution
FROM debian:bullseye-slim
COPY --from=build /simple-web-server/target/release/simple-web-server /usr/local/lib/simple-web-server
CMD ["/usr/local/lib/simple-web-server"]
Thanks a lot , this solved the health check problem. But this docker also copies target directory , which makes the docker size pretty big.
Can you suggest any changes to omit the target directory in docker , while also making sure that the app works as expected ?
With this, you can use a throwaway temporary environment to build your executable, then extract any artifacts into a clean environment.
The main downside to using this is that you’ll have to remember to install any native libraries (like openssl) in both containers.
Here’s an illustration of what this could look like:
# Make sure the debian versions (right now, bullseye) match up
# so that both environments share the same glibc version.
#
# Mixing them up can lead to nasty, difficult to debug errors
# (speaking from experience!)
#
# (that said, also note that rust uses the convention
# `slim-[version]` whereas debian base uses `[version]-slim`)
#
FROM rust:slim-bullseye as builder
RUN apt-get update && apt-get upgrade
RUN mkdir /app
COPY . /app/
WORKDIR /app
RUN cargo build --release
# Run the compiled binary.
FROM debian:bullseye-slim
RUN apt-get update && apt-get upgrade
COPY --from=builder /app/target/release/testapp /usr/bin/testapp
CMD ["testapp"]
Great, Thanks @allison .
Just one last query regarding this. Will this Dockerfile be appropriate for a rust server accepting websocket connections too ? Or are there some changes to be made ?
You shouldn’t have any trouble using WebSockets. iirc they use tcp ports 80 and 443, which should already be open for web traffic anyway! if something did go wrong, however, it’d almost certainly be with the fly.toml file rather than the Dockerfile
If you have any trouble with them, though, but they work locally, feel free to come back and post about it! this forum’s very active and there’s a ton of helpful people here