We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08d254a commit bfabf56Copy full SHA for bfabf56
dockerfile
@@ -11,10 +11,10 @@ ARG package_version
11
12
# Only add build tools for alpine image. The ubuntu based images have build tools already.
13
# This command fails with a warning on Ubuntu (sh) and succeeds without issue on alpine (bash).
14
-RUN if [[ "$build_target" == *"alpine" ]] ; then apk add build-base ; fi
+RUN if which apk ; then apk add python3-dev libffi-dev libevent-dev build-base ; fi
15
16
-# Install packaer and build all dependencies.
17
-RUN pip install $package==$package_version
+# Install package and build all dependencies.
+RUN pip install inotify $package==$package_version
18
19
# Build our actual container now.
20
FROM python:$publish_target
0 commit comments