WorkTimer/Dockerfile

10 lines
148 B
Docker
Raw Permalink Normal View History

2024-11-03 01:30:09 +01:00
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" ]