Skip to content

Commit acfb4ee

Browse files
committed
update ubuntu
1 parent aca20bc commit acfb4ee

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Checkout code
1616
uses: actions/checkout@v2
1717

18-
- name: install libdrm-dev
18+
- name: install libva-dev
1919
run: |
2020
sudo apt-get update
21-
sudo apt-get install -y libdrm-dev
21+
sudo apt-get install -y libva-dev
2222
2323
- name: build ffmpeg
2424
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ FROM ubuntu:20.04
1616

1717
# install va-driver
1818
RUN apt-get update \
19-
&& apt-get -y --no-install-recommends install libva-drm2 \
19+
&& apt-get -y install libva-drm2 \
2020
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
2121

2222
COPY --from=build /app/workspace/bin/ffmpeg /usr/bin/ffmpeg

cuda-ubuntu.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM ubuntu:${VER}
2020

2121
# install va-driver
2222
RUN apt-get update \
23-
&& apt-get -y --no-install-recommends install libva-drm2 \
23+
&& apt-get -y install libva-drm2 \
2424
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
2525

2626
# Copy libnpp

0 commit comments

Comments
 (0)