File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ RUN adduser --system \
1515 --group \
1616 postgres
1717
18- RUN buildDeps='gcc git libffi-dev libssl-dev python-dev python-pip python-wheel' ; \
18+ RUN buildDeps='gcc git libffi-dev libssl-dev python-dev python-pip python-wheel' && \
1919 localedef -i en_US -c -f UTF-8 -A /etc/locale.alias en_US.UTF-8 && \
2020 export DEBIAN_FRONTEND=noninteractive && \
2121 apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8 && \
@@ -44,8 +44,10 @@ RUN buildDeps='gcc git libffi-dev libssl-dev python-dev python-pip python-wheel'
4444 apt-get autoremove -y && \
4545 apt-get clean -y && \
4646 # package up license files if any by appending to existing tar
47- COPYRIGHT_TAR='/usr/share/copyrights.tar' ; \
48- gunzip $COPYRIGHT_TAR.gz; tar -rf $COPYRIGHT_TAR /usr/share/doc/*/copyright; gzip $COPYRIGHT_TAR && \
47+ COPYRIGHT_TAR='/usr/share/copyrights.tar' && \
48+ gunzip $COPYRIGHT_TAR.gz && \
49+ tar -rf $COPYRIGHT_TAR /usr/share/doc/*/copyright && \
50+ gzip $COPYRIGHT_TAR && \
4951 rm -rf \
5052 /usr/share/doc \
5153 /usr/share/man \
You can’t perform that action at this time.
0 commit comments