mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
11 lines
176 B
Docker
11 lines
176 B
Docker
# docker build -t clickhouse/mysql-js-client .
|
|
# MySQL JavaScript client docker container
|
|
|
|
FROM node:16.14.2
|
|
|
|
WORKDIR /usr/app
|
|
|
|
RUN npm install mysql
|
|
|
|
COPY ./test.js ./test.js
|