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 @@ -10,6 +10,7 @@ ENV LANG C.UTF-8
10
10
# extra dependencies (over what buildpack-deps already includes)
11
11
RUN apt-get update && apt-get install -y --no-install-recommends \
12
12
# Python 3.4 on Stretch+ needs to use an older version of "libssl-dev" (these lines both get removed for every other combination)
13
+ libbluetooth-dev \
13
14
libssl-dev \
14
15
tk-dev \
15
16
uuid-dev \
@@ -19,8 +20,7 @@ ENV GPG_KEY %%PLACEHOLDER%%
19
20
ENV PYTHON_VERSION %%PLACEHOLDER%%
20
21
21
22
RUN set -ex \
22
- \
23
- && apt-get update && apt-get install -y --no-install-recommends libbluetooth-dev \
23
+ && apt-get update && apt-get install -y --no-install-recommends \
24
24
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
25
25
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
26
26
&& export GNUPGHOME="$(mktemp -d)" \
You can’t perform that action at this time.
0 commit comments