Skip to content

Commit

Permalink
Update to Ubuntu 20.04 (lynckia#1635)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arri98 authored Oct 16, 2020
1 parent b0b99a5 commit 8a1eb05
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 6,166 deletions.
7 changes: 6 additions & 1 deletion Dockerfile
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
ENV TZ=Europe/Madrid
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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion erizo/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ set (ERIZO_TEST ${CMAKE_CURRENT_SOURCE_DIR}/test)

file(GLOB_RECURSE ERIZO_SOURCES_FILES ${ERIZO_SOURCE}/*.cpp ${ERIZO_SOURCE}/*.h ${ERIZO_TEST}/*.cpp)
add_custom_target(lint
${ERIZO_ROOT_DIR}/utils/cpplint.py --filter=-legal/copyright,-build/include --linelength=120 ${ERIZO_SOURCES_FILES}
cpplint --filter=-legal/copyright,-build/include --linelength=120 ${ERIZO_SOURCES_FILES}
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
COMMENT "Executing lint"
)
Expand Down
Loading

0 comments on commit 8a1eb05

Please sign in to comment.