Minor cleanup

This commit is contained in:
Viktor Petersson
2022-09-13 10:57:25 +01:00
parent ed2dab7507
commit 81eefa888b
3 changed files with 3 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ RUN apt-get update && \
apt-get clean
# Install Python requirements
ADD requirements/requirements.viewer.txt /tmp/requirements.txt
COPY requirements/requirements.viewer.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
# Works around issue with `curl`

View File

@@ -5,6 +5,7 @@ FROM --platform=linux/arm/v7 balenalib/rpi-raspbian:buster as builder
# to make things work.
RUN apt-get update && \
apt-get install -y \
apt-utils \
firebird-dev \
freetds-dev \
gstreamer-tools \

View File

@@ -4,7 +4,7 @@ Since our entire build environment resides inside a Docker container, you don't
```
$ cd webview
$ docker build \
$ docker buildx build \
--build-arg GIT_HASH=$(git rev-parse --short HEAD) \
-t qt-builder .
```