dockerize ingestion script, with build/deploy script

This commit is contained in:
2023-12-25 19:58:32 -05:00
parent 77f3033a76
commit cec0171efa
4 changed files with 61 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
# 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" ]