Skip to content

Commit f1a4635

Browse files
committed
chore: update rust version, update docker base image
1 parent a173028 commit f1a4635

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tapoctl"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55
license = "MIT"
66
authors = ["WhySoBad <49595640+WhySoBad@users.noreply.github.com>"]
77
description = "A cli and server for interacting locally with your tplink tapo lamps from the command line"

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:alpine3.19 as builder
1+
FROM rust:alpine3.22 AS builder
22
ARG TARGETPLATFORM
33

44
WORKDIR /app
@@ -16,7 +16,7 @@ RUN CARGO_BUILD_TARGET=$([ "$TARGETPLATFORM" = "arm" ] && echo "aarch64-unknown-
1616
COPY . .
1717
RUN cargo build --release
1818

19-
FROM alpine:3.19 as runner
19+
FROM alpine:3.22 AS runner
2020
ARG TARGETPLATFORM
2121

2222
RUN apk add --no-cache musl-dev openssl-dev openssl protoc gcc

0 commit comments

Comments
 (0)