Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chombot-kcc.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.93.1 as builder

Check warning on line 1 in chombot-kcc.dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push-chombot-kcc

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in chombot-kcc.dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push-chombot-kcc

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

RUN USER=root cargo new --bin chombot

Expand All @@ -8,7 +8,7 @@

RUN cargo build --bin chombot-kcc --release

FROM debian:bookworm-slim
FROM debian:trixie-slim
ARG APP=/app

RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion chombot.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.93.1 as builder

Check warning on line 1 in chombot.dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push-chombot

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in chombot.dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push-chombot

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

RUN USER=root cargo new --bin chombot

Expand All @@ -8,7 +8,7 @@

RUN cargo build --bin chombot --release

FROM debian:bookworm-slim
FROM debian:trixie-slim
ARG APP=/app

RUN apt-get update \
Expand Down