diff --git a/Dockerfile b/Dockerfile index 92726bc..71d012e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /RustRoBot RUN apk update && apk upgrade --available && sync && apk add --no-cache --virtual .build-deps musl-dev libressl-dev build-base pkgconfig COPY . . RUN cargo build --release -FROM alpine:3.20.3 +FROM alpine:3.21.0 RUN apk update && apk upgrade --available && sync COPY --from=builder /RustRoBot/target/release/rustrobot /rustrobot ENTRYPOINT ["/rustrobot"]