-
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.
- Ubuntu:18.04 has issues with c++17 and nlohmann_json (nlohmann/json#3090) - Added dos2unix to fix DOS line endings to enable building in Windows - Added CodeQL analysis
- Loading branch information
1 parent
bce6661
commit 995b1bb
Showing
4 changed files
with
15 additions
and
75 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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,11 +1,11 @@ | ||
FROM ubuntu:18.04 | ||
FROM ubuntu:20.04 | ||
|
||
LABEL maintainer="[email protected]" | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update && \ | ||
apt-get install sudo | ||
apt-get install sudo dos2unix | ||
|
||
ENV HOME /home/groot | ||
ENV INSIDE_DOCKER="yes" | ||
|
@@ -18,6 +18,7 @@ USER groot | |
WORKDIR $HOME | ||
|
||
COPY setup.sh setup.sh | ||
RUN sudo dos2unix setup.sh | ||
RUN bash setup.sh | ||
|
||
WORKDIR $HOME/groot | ||
|
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