1
0
Fork 0

Add missing deps in container
continuous-integration/drone/push Build is passing Details

This commit is contained in:
nemunaire 2020-10-24 00:13:34 +02:00
parent 5ec2f2997b
commit 13c643fc19
1 changed files with 2 additions and 2 deletions

View File

@ -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" ]