clean up js project in prep for clojure rewrite

This commit is contained in:
Travis Shears 2025-06-02 09:51:00 +02:00
parent adbc1f5133
commit 77ae02c8b8
14 changed files with 0 additions and 734 deletions

View file

@ -1,17 +0,0 @@
FROM public.ecr.aws/docker/library/node:22-slim AS appbuild
WORKDIR /app
COPY package.json .yarnrc.yml yarn.lock ./
RUN corepack enable
RUN yarn set version 4.9.1
RUN yarn install
COPY ./src ./src
COPY build.mjs ./
RUN node build.mjs
# Build Stage 2
# This build takes the production build from staging build
#
FROM public.ecr.aws/docker/library/node:22-slim
WORKDIR /app
COPY --from=appbuild /app/dist ./dist
CMD node ./dist/nostr.js