From 13c643fc19faaa0c03fffee62b97f0091db82522 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Sat, 24 Oct 2020 00:13:34 +0200 Subject: [PATCH] Add missing deps in container --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0a345e2..c61d8be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apk add --no-cache bash build-base capstone-dev && \ FROM python:alpine -RUN apk add --no-cache capstone w3m +RUN apk add --no-cache capstone mandoc-doc man-db w3m youtube-dl WORKDIR /usr/src/app @@ -18,7 +18,7 @@ VOLUME /var/lib/nemubot COPY requirements.txt ./ -COPY --from=pybuild /usr/lib/python3.9 /usr/lib/python3.9 +COPY --from=pybuild /usr/local/lib/python3.9 /usr/lib/python3.9 COPY . . ENTRYPOINT [ "python", "-m", "nemubot", "-d", "-M", "/usr/src/app/modules" ]