1 2 3 4 5 6 7 8 9
FROM rust:alpine WORKDIR /app COPY . /app/ RUN cargo build --release ENTRYPOINT [ "/app/target/release/tow" ] CMD [ "server" ]