Skip to content

Commit

Permalink
chore(deps): update docker (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 20, 2024
1 parent e677df5 commit bf9f273
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.79-alpine@sha256:a454f49f2e15e233f829a0fd9a7cbdac64b6f38ec08aeac227595d4fc6eb6d4d as rust_base
FROM rust:1.81-alpine@sha256:d6e876ca5fe200f4ac60312b95606f0b042699c4cf6a19493b7d2a2ebbfb337b as rust_base

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / arm64 image

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 Dockerfile

View workflow job for this annotation

GitHub Actions / amd64 image

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 apk add musl-dev pkgconfig wget

Expand All @@ -14,7 +14,7 @@ WORKDIR /app
RUN cargo bundle-licenses --format json --output /app/server-licenses.json

# build frontend
FROM node:20-alpine@sha256:928b24aaadbd47c1a7722c563b471195ce54788bf8230ce807e1dd500aec0549 as ui_builder
FROM node:20-alpine@sha256:c13b26e7e602ef2f1074aef304ce6e9b7dd284c419b35d89fcf3cc8e44a8def9 as ui_builder

Check warning on line 17 in Dockerfile

View workflow job for this annotation

GitHub Actions / arm64 image

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 17 in Dockerfile

View workflow job for this annotation

GitHub Actions / amd64 image

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 mkdir /app
COPY /ui app/
Expand Down Expand Up @@ -46,7 +46,7 @@ WORKDIR /app
RUN --mount=type=cache,target=/sccache-cache cargo build --release && sccache --show-stats

# assemble final image
FROM alpine:3.20@sha256:b89d9c93e9ed3597455c90a0b88a8bbb5cb7188438f70953fede212a0c4394e0
FROM alpine:3.20@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d

RUN apk add vips-tools

Expand Down

0 comments on commit bf9f273

Please sign in to comment.