1 2 3 4 5 6 7 8 9 10 11 12
FROM rust:1.81 # Set the working directory WORKDIR /app # Copy the source code COPY . . # Set the default user ENV USER=codad5