File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
FROM postgres:9
2
2
COPY . /uint
3
- RUN PATH=/usr/lib/postgresql/${PG_MAJOR}/bin:$PATH apt-get update -y && apt-get upgrade -y \
3
+ RUN apt-get update -y && apt-get upgrade -y \
4
4
&& apt-get install -y --no-install-recommends \
5
5
gcc \
6
6
build-essential \
7
7
postgresql-server-dev-all \
8
- && cd /uint && make && make install \
8
+ && cd /uint && PATH=/usr/lib/postgresql/${PG_MAJOR}/bin:$PATH make install \
9
9
&& apt-get purge -y build-essential binutils comerr-dev cpp dctrl-tools gcc krb5-multidev libasan* libatomic1 libc-dev-bin libc6-dev libcilkrts5 libcloog-isl4 libgomp1 libgssrpc4 libisl* libitm1 libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 liblsan0 libmpc3 libmpfr4 libpq-dev libquadmath0 libssl-dev libtsan0 libubsan0 linux-libc-dev make postgresql-server-dev-all zlib1g-dev \
10
10
&& apt-get autoremove -y \
11
11
&& apt-get autoclean -y \
You can’t perform that action at this time.
0 commit comments