Skip to content

Commit a02c43c

Browse files
author
sergioisidoro
committed
Move libbluetooth-dev out of runtime deps
1 parent 7044dac commit a02c43c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile-debian.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ ENV LANG C.UTF-8
1010
# extra dependencies (over what buildpack-deps already includes)
1111
RUN apt-get update && apt-get install -y --no-install-recommends \
1212
# 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 \
1413
libssl-dev \
1514
tk-dev \
1615
uuid-dev \
@@ -21,6 +20,7 @@ ENV PYTHON_VERSION %%PLACEHOLDER%%
2120

2221
RUN set -ex \
2322
\
23+
&& apt-get update && apt-get install -y --no-install-recommends libbluetooth-dev \
2424
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
2525
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
2626
&& export GNUPGHOME="$(mktemp -d)" \

0 commit comments

Comments
 (0)