fix: Dockerfiles
All checks were successful
dotenv-linter check / dotenv-linter check (pull_request) Successful in 16s
hadolint check / hadolint check (pull_request) Successful in 23s
htmlhint check / htmlhint check (pull_request) Successful in 49s
markdownlint check / markdownlint check (pull_request) Successful in 54s
Prettier check / Prettier check (pull_request) Successful in 55s
checkov check / checkov check (pull_request) Successful in 1m48s
ShellCheck check / ShellCheck check (pull_request) Successful in 33s
yamllint check / yamllint check (pull_request) Successful in 35s
Stylelint check / Stylelint check (pull_request) Successful in 48s
Rust check / Rust check (pull_request) Successful in 22m16s
actionlint check / actionlint check (pull_request) Successful in 12s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 8s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 19s
GitLeaks check / GitLeaks check (pull_request) Successful in 21s

This commit is contained in:
2025-12-18 22:39:58 +01:00
parent 32c12186c1
commit d2e7f4dad1
2 changed files with 6 additions and 6 deletions

View File

@@ -5,8 +5,8 @@ RUN useradd -m -u 1000 -s /bin/bash app_user \
USER app_user
RUN cargo install --git https://github.com/diesel-rs/diesel --rev 2e85ba060d3d70ea605ea58a79b8a435749a7adc diesel_cli \
&& cargo install --git https://github.com/DioxusLabs/dioxus --rev 8f8b58ea80ba0ec8057807bcd58fb609f7a5f2b1 dioxus-cli
RUN cargo install --git https://github.com/diesel-rs/diesel --rev 2e85ba060d3d70ea605ea58a79b8a435749a7adc --locked diesel_cli \
&& cargo install --git https://github.com/DioxusLabs/dioxus --rev 8f8b58ea80ba0ec8057807bcd58fb609f7a5f2b1 --locked dioxus-cli
COPY --chown=app_user . /srv/app
WORKDIR /srv/app