forked from OSGeo/PROJ
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docker: update base image to ubuntu:20.04 [ci skip] (OSGeo#3043)
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 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,18 +1,18 @@ | ||
## | ||
# OSGeo/PROJ | ||
|
||
FROM ubuntu:18.04 as builder | ||
FROM ubuntu:20.04 as builder | ||
|
||
MAINTAINER Howard Butler <[email protected]> | ||
|
||
ARG DESTDIR="/build" | ||
|
||
# Setup build env | ||
RUN apt-get update -y \ | ||
&& apt-get install -y --fix-missing --no-install-recommends \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --fix-missing --no-install-recommends \ | ||
software-properties-common build-essential ca-certificates \ | ||
make cmake wget unzip libtool automake \ | ||
zlib1g-dev libsqlite3-dev pkg-config sqlite3 libcurl4-gnutls-dev \ | ||
cmake wget unzip \ | ||
zlib1g-dev libsqlite3-dev sqlite3 libcurl4-gnutls-dev \ | ||
libtiff5-dev | ||
|
||
COPY . /PROJ | ||
|
@@ -27,7 +27,7 @@ RUN cd /PROJ \ | |
|
||
|
||
|
||
FROM ubuntu:18.04 as runner | ||
FROM ubuntu:20.04 as runner | ||
|
||
RUN date | ||
|
||
|
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