Skip to content
Snippets Groups Projects
Commit 3ac85f53 authored by mohanty's avatar mohanty
Browse files

Add build-essential as a necessary dependency (useful for newer nvidia/cuda images without g++)

parent 2a4d9593
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ ENV DEBIAN_FRONTEND=noninteractive \
# Install system dependencies and clean up in one layer
COPY apt.txt /tmp/apt.txt
RUN apt -qq update && apt -qq install -y --no-install-recommends `cat /tmp/apt.txt` locales wget \
RUN apt -qq update && apt -qq install -y --no-install-recommends `cat /tmp/apt.txt` locales wget build-essential \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/* \
&& apt clean
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment