-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade base image from xenial to bionic (ffmpeg upgrade to 4.3)
- Loading branch information
1 parent
71eaad6
commit cb2b6a3
Showing
2 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:xenial | ||
FROM ubuntu:bionic | ||
|
||
LABEL maintainer="[email protected]" | ||
|
||
|
@@ -18,9 +18,10 @@ RUN apt-get update && \ | |
apt-get --no-install-recommends install -yqq \ | ||
wget \ | ||
software-properties-common \ | ||
curl | ||
curl \ | ||
gpg-agent | ||
|
||
RUN add-apt-repository ppa:mc3man/xerus-media && \ | ||
RUN add-apt-repository ppa:mc3man/bionic-prop && \ | ||
curl -sL https://deb.nodesource.com/setup_14.x | bash - && \ | ||
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \ | ||
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list | ||
|
@@ -42,7 +43,7 @@ RUN npm install && \ | |
|
||
COPY . . | ||
|
||
RUN apt-get purge curl -y && \ | ||
RUN apt-get purge curl gpg-agent -y && \ | ||
apt-get clean -y && \ | ||
apt-get autoremove -y && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters