You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# adapted from example on pnpm.io
|
|
FROM node:20-slim AS base
|
|
ENV PNPM_HOME="/pnpm"
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
RUN corepack enable
|
|
WORKDIR /app
|
|
# prod-deps
|
|
RUN pnpm add @clickhouse/client
|
|
COPY ./src /app
|
|
CMD [ "node", "ingest-options-aggregates-from-polygon.mjs" ] |