We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4859c20 + 7da08a6 commit 2ede632Copy full SHA for 2ede632
tests/logictest/Dockerfile
@@ -1,6 +1,18 @@
1
FROM python:3.10
2
3
-RUN python3 -m pip install --upgrade pip && pip install --user mysql-connector six PyHamcrest requests environs fire
+RUN apt-get update && apt-get install psmisc libffi-dev && rm -rf /var/lib/apt/lists/*
4
+RUN python3 -m pip install --upgrade pip && pip install \
5
+ mysql-connector-python \
6
+ pymysql \
7
+ sqlalchemy \
8
+ clickhouse_driver \
9
+ mysql-connector \
10
+ six \
11
+ PyHamcrest \
12
+ requests \
13
+ environs \
14
+ fire \
15
+ fuzzingbook
16
RUN pip install https://github.com/youngsofun/clickhouse-sqlalchemy/archive/a116e3162c699c12e63a689385b547f639c13018.zip
17
RUN mkdir /test
18
WORKDIR /test
0 commit comments