Skip to content

Commit ccb43ae

Browse files
author
duanhongyi
committed
fix(Dockerfile): empty continuation lines will become errors in a future release
1 parent c0f42c3 commit ccb43ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
FROM postgres:11
22

33
ARG DEBIAN_FRONTEND=noninteractive
4+
ARG BUILD_DEPS='gcc git libffi-dev libssl-dev python3-dev python3-pip python3-wheel'
45

5-
RUN buildDeps='gcc git libffi-dev libssl-dev python3-dev python3-pip python3-wheel' && \
6-
apt-get update && \
6+
RUN apt-get update && \
77
apt-get install -y --no-install-recommends \
8-
$buildDeps \
8+
$BUILD_DEPS \
99
gosu \
1010
lzop \
1111
libpq-dev \

0 commit comments

Comments
 (0)