Install crudini on the container

This commit is contained in:
Luke Murphy
2020-03-22 17:41:30 +01:00
parent 49355826ef
commit 6d2feaf079
2 changed files with 8 additions and 7 deletions

View File

@ -6,6 +6,13 @@ COPY . ${WORKDIR}
COPY sbin/* /sbin/
RUN apk --no-cache add mysql-client
RUN apk --no-cache add \
ca-certificates \
mysql-client \
py-pip
RUN pip install --upgrade pip
RUN pip install --no-cache-dir crudini
ENTRYPOINT ["/sbin/entrypoint.sh"]