We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd3d3b0 commit 3ad0818Copy full SHA for 3ad0818
1 file changed
Dockerfile
@@ -1,8 +1,8 @@
1
FROM python:3.7
2
MAINTAINER Josip Janzic <josip@jjanzic.com>
3
4
-RUN apt-get update && \
5
- apt-get install -y \
+RUN apt-get update \
+ && apt-get install -y \
6
build-essential \
7
cmake \
8
git \
@@ -17,7 +17,8 @@ RUN apt-get update && \
17
libpng-dev \
18
libtiff-dev \
19
libavformat-dev \
20
- libpq-dev
+ libpq-dev \
21
+ && rm -rf /var/lib/apt/lists/*
22
23
RUN pip install numpy
24
0 commit comments