fix: missing deps for docker
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kieran 2024-05-14 10:15:39 +01:00
parent ebd89f7f9e
commit 1a27f19e50
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -33,7 +33,7 @@ RUN cargo install --path . --root /app/build
FROM $IMAGE as runner
WORKDIR /app
RUN apt update && \
apt install -y libx264-164 libwebp7 && \
apt install -y libx264-164 libwebp7 libvpx7 && \
rm -rf /var/lib/apt/lists/*
COPY --from=build /app/build .
COPY --from=build /app/src/ui ui