[tox] Add sqlite3

This commit is contained in:
drymer 2018-10-10 09:54:52 +02:00
parent 6e82ef72d6
commit a6ccd45c09
Signed by: drymer
GPG Key ID: A307D64D5DDFDAAD
2 changed files with 4 additions and 2 deletions

View File

@ -31,7 +31,8 @@ FROM debian:stretch-slim
COPY --from=builder /tox/.pyenv/ /tox/.pyenv/
COPY --from=builder /tox/.bash_profile/ /tox/.bash_profile
RUN apt update && apt install -y curl llvm xz-utils locales make libreadline-dev
RUN apt update && apt install -y curl llvm xz-utils locales make \
libreadline-dev sqlite3
# hackity hack
ENV UID=1000 GID=1000

View File

@ -25,7 +25,8 @@ FROM debian:stretch-slim
COPY --from=builder /root/.pyenv/ /root/.pyenv/
COPY --from=builder /root/.bash_profile/ /root/.bash_profile
RUN apt update && apt install -y curl llvm xz-utils locales make libreadline-dev
RUN apt update && apt install -y curl llvm xz-utils locales make \
libreadline-dev sqlite3
# Set utf-8
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \