initial commit
All checks were successful
release-tag / release-image (push) Successful in 1m49s

This commit is contained in:
2024-10-15 03:50:35 +00:00
commit 44a0227ab1
12 changed files with 1793 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:22.4-slim AS build
WORKDIR /work
COPY . /work
RUN npm ci && npm run build
FROM gcr.io/distroless/nodejs22-debian12
WORKDIR /work
COPY --from=build /work /work
CMD ["index.js"]