From 5b70af1c0d616022c25c61e2c4595d3ea1a03315 Mon Sep 17 00:00:00 2001 From: Cogent Apps Date: Sat, 15 Apr 2023 10:51:39 +0000 Subject: [PATCH] dockerfile fix --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ce1bcec..d32fab20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,8 +53,7 @@ RUN curl https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modules ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH -# Copy package.json and requirements.txt into the working directory -COPY ./server/package.json ./server/requirements.txt ./server/tsconfig.json ./ +COPY ./server/package.json ./server/tsconfig.json ./ # Install Node.js dependencies from package.json RUN npm install