We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d78e6 commit b7bf0ffCopy full SHA for b7bf0ff
Dockerfile
@@ -3,20 +3,20 @@ FROM ubuntu:24.04
3
4
LABEL maintainer="Behnam Asadi <behnam.asadi@gmail.com>"
5
6
-
7
# this is for timezone config
8
ENV DEBIAN_FRONTEND=noninteractive
9
ENV TZ=Europe/Berlin
10
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
11
12
-#-y is for accepting yes when the system asked us for installing the package
+# Install required packages with better error handling
13
RUN apt-get update && apt-get install -y \
14
- git \
+ git \
15
cmake \
16
ninja-build \
17
doxygen \
18
build-essential \
19
graphviz \
+ && apt-get clean \
20
&& rm -rf /var/lib/apt/lists/*
21
22
0 commit comments