ClickHouse/docker/test/integration/mysql_js_client/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
176 B
Docker
Raw Normal View History

2021-09-06 11:33:39 +00:00
# docker build -t clickhouse/mysql-js-client .
# MySQL JavaScript client docker container
FROM node:16.14.2
2022-04-04 22:10:33 +00:00
WORKDIR /usr/app
RUN npm install mysql
2022-04-04 22:10:33 +00:00
COPY ./test.js ./test.js