Pull request fixes for codacy.

pull/21/head
Andrew Killer 5 years ago
parent eafe97a29d
commit 4188ed2ced
  1. 2
      Dockerfile
  2. 4
      README.md

@ -9,7 +9,7 @@ ARG ANDROID_API_LEVEL=29
WORKDIR /build
RUN apt-get update && \
apt-get install -y \
apt-get install -y --no-install-recommends \
autoconf \
automake \
build-essential \

@ -46,12 +46,14 @@ The build output is copied to /build/build. This should be mounted to a folder o
```sh
docker build --rm --tag ffmpeg-android-maker:latest .
```
2. Run the container. This will download ffmpeg, build it, then copy to /build/build:
```sh
docker container run --rm --name ffmpeg-android-maker -v /path/to/host/output:/build/build ffmpeg-android-maker
```
On Windows you can pass in a host path in the following way:
```
```sh
-v C:\path\to\host\output:/build/build
```

Loading…
Cancel
Save