-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to Ubuntu 20.04 #1635
Update to Ubuntu 20.04 #1635
Changes from all commits
8ac8411
334652c
854c7cd
e6b277f
77ad46c
7e58bf3
c2c3b98
4b01584
e898774
3c34815
f253be6
6eaeefc
29677e8
b461a85
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,9 +1,12 @@ | ||||||
FROM ubuntu:16.04 | ||||||
FROM ubuntu:20.04 | ||||||
|
||||||
MAINTAINER Lynckia | ||||||
|
||||||
WORKDIR /opt | ||||||
|
||||||
#Configure tzdata | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
ENV TZ=Europe/Madrid | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why do we need to set the timezone here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. With Ubuntu 20, when running apt-get update the library tzdata will install and stop the docker build to ask the user for their timezone. The problem is that even when the user introduces the timezone, docker build gets stuck so I had to set the timezone before. |
||||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||||||
|
||||||
# Download latest version of the code and install dependencies | ||||||
RUN apt-get update && apt-get install -y git wget curl | ||||||
|
@@ -29,6 +32,8 @@ RUN ./installErizo.sh -dfeacs && \ | |||||
./../nuve/installNuve.sh && \ | ||||||
./installBasicExample.sh | ||||||
|
||||||
RUN ldconfig /opt/licode/build/libdeps/build/lib | ||||||
|
||||||
WORKDIR /opt/licode | ||||||
|
||||||
ARG COMMIT | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👏