From ddba489ec4a83261365b6cba1a43949313a89a97 Mon Sep 17 00:00:00 2001 From: Justin McReynolds Date: Mon, 30 Sep 2024 17:05:59 -0700 Subject: [PATCH] openai package install: revert to Dockerfile --- Dockerfile | 3 ++- package.json | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a63164cb..bc9a39a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,8 @@ COPY package*.json ./ COPY . . -#RUN npm install openai +# this wouldn't install from package.json for some reason... tried >1.0.0 there. +RUN npm install openai # this version is compatible, but I want to try via package.json: #RUN npm install @sveltejs/adapter-node@1.0.0 diff --git a/package.json b/package.json index 83730258..2043271f 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "svelte-check": "^3.0.1", "tslib": "^2.4.1", "typescript": "^4.9.3", - "openai": "^1.0.0", "vite": "^4.0.0" }, "type": "module",