We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67d135d commit 451b90fCopy full SHA for 451b90f
Dockerfile
@@ -15,10 +15,16 @@ COPY . .
15
RUN bun run build
16
17
# run app
18
+FROM node:22-slim AS runner
19
+ENV CI=true
20
+ENV NODE_ENV=production
21
+
22
WORKDIR /app
23
24
+COPY --from=base /app /app
25
26
EXPOSE 3000
27
ENV HOSTNAME=0.0.0.0
28
ENV PORT=3000
29
-CMD ["bun", "run", "start"]
30
+CMD ["npm", "run", "start"]
packages/litlytics/package.json
@@ -1,9 +1,10 @@
1
{
2
"name": "litlytics",
3
"module": "dist/litlytics.js",
4
+ "main": "dist/litlytics.js",
5
"types": "litlytics.ts",
6
"type": "module",
- "version": "0.3.0",
7
+ "version": "0.3.1",
8
"scripts": {
9
"build": "bun run build.ts",
10
"typecheck": "tsc",
0 commit comments