-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merging RUN's. Tidying after installations.
- Loading branch information
Showing
1 changed file
with
4 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,10 +1,8 @@ | ||
FROM ubuntu:latest | ||
LABEL description="Valgrind" | ||
ENV TZ=Europe/Kiev | ||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
RUN apt-get update | ||
RUN apt-get upgrade -y | ||
RUN apt-get install git-core -y | ||
RUN apt-get install build-essential cmake valgrind clang vim -y | ||
RUN apt-get install gcc make xorg libxext-dev libbsd-dev -y | ||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone \ | ||
&& apt-get -y update && apt-get -y upgrade \ | ||
&& apt-get -y install vim build-essential git-core cmake make clang gcc valgrind libxext-dev libbsd-dev xorg \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
WORKDIR /valgrind |