Fix missing dependencies causing build failure in Docker
This commit is contained in:
parent
40f8378eda
commit
ecaa92b821
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
FROM ghcr.io/steamdeckhomebrew/holo-toolchain-rust:latest
|
FROM ghcr.io/steamdeckhomebrew/holo-toolchain-rust:latest
|
||||||
|
|
||||||
RUN pacman -S --noconfirm cmake make
|
RUN pacman -S --noconfirm cmake make clang
|
||||||
|
|
||||||
ENTRYPOINT [ "/backend/entrypoint.sh" ]
|
ENTRYPOINT [ "/backend/entrypoint.sh" ]
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# build docker container locally (for testing)
|
# build docker container locally (for testing)
|
||||||
|
|
||||||
docker build -t powertools_backend .
|
docker build --pull --rm -t powertools_backend .
|
||||||
|
|
Loading…
Reference in a new issue