FROM rust:alpine3.19
RUN apk add --no-cache musl-dev
ADD ./ /app
WORKDIR /app
RUN cargo build --release
CMD [ "/app/target/release/work-timer" ]