Fix missing dependencies causing build failure in Docker

This commit is contained in:
NGnius (Graham) 2023-02-04 17:35:49 -05:00
parent 40f8378eda
commit ecaa92b821
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
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" ]

View file

@ -1,4 +1,4 @@
#!/bin/bash
# build docker container locally (for testing)
docker build -t powertools_backend .
docker build --pull --rm -t powertools_backend .