Skip to content

Commit

Permalink
Merging RUN's. Tidying after installations.
Browse files Browse the repository at this point in the history
  • Loading branch information
praclet committed Jul 5, 2021
1 parent 870fe3c commit 590a7b1
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Dockerfile
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

0 comments on commit 590a7b1

Please sign in to comment.