Skip to content

Commit

Permalink
update docker to support ubuntu 19.10
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Oct 11, 2019
1 parent 211c5b2 commit 6755c61
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tools/docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export/python: | export
#################

# Currently supported distro
DISTROS = centos-7 debian-9 ubuntu-19.04 ubuntu-18.04 ubuntu-16.04
DISTROS = centos-7 debian-9 ubuntu-19.10 ubuntu-18.04 ubuntu-16.04

# Create build docker images with OR-Tools built
targets = $(addprefix docker_, $(DISTROS))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.10
FROM ubuntu:19.10

RUN apt-get update \
&& apt-get install -y -q build-essential zlib1g-dev \
Expand All @@ -9,4 +9,4 @@ RUN apt-get update \
#RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

WORKDIR /root
ADD or-tools_ubuntu-18.10_v*.tar.gz .
ADD or-tools_ubuntu-19.10_v*.tar.gz .
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.10
FROM ubuntu:19.10

RUN apt-get update -qq \
&& apt-get install -yq build-essential zlib1g-dev \
Expand All @@ -19,4 +19,4 @@ RUN apt-get update -qq \
#RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

WORKDIR /root
ADD or-tools_ubuntu-18.10_v*.tar.gz .
ADD or-tools_ubuntu-19.10_v*.tar.gz .
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.10
FROM ubuntu:19.10

RUN apt-get update -qq \
&& apt-get install -y -q build-essential zlib1g-dev default-jdk \
Expand All @@ -9,4 +9,4 @@ RUN apt-get update -qq \
#RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

WORKDIR /root
ADD or-tools_ubuntu-18.10_v*.tar.gz .
ADD or-tools_ubuntu-19.10_v*.tar.gz .

0 comments on commit 6755c61

Please sign in to comment.