Skip to content

Commit

Permalink
make docker image smaller
Browse files Browse the repository at this point in the history
  • Loading branch information
cogentapps committed Apr 29, 2023
1 parent 4b4cdd4 commit ed5e099
Showing 1 changed file with 7 additions and 22 deletions.
29 changes: 7 additions & 22 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,33 +25,18 @@ ENV NODE_ENV=production
# Build the application
RUN npm run build

FROM nvidia/cuda:12.1.0-devel-ubuntu20.04 AS server
FROM node:19-bullseye-slim AS server

# Set the working directory
WORKDIR /app

# Update the package index and install required dependencies
RUN apt-get update && \
apt-get install -y \
curl \
build-essential \
libssl-dev \
libffi-dev \
python3-dev \
python3-pip \
openssl

RUN mkdir /usr/local/nvm
ENV NVM_DIR /usr/local/nvm
ENV NODE_VERSION 19.9.0
RUN curl https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash \
&& . $NVM_DIR/nvm.sh \
&& nvm install $NODE_VERSION \
&& nvm alias default $NODE_VERSION \
&& nvm use default

ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modules
ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH
# RUN apt-get update && \
# apt-get install -y \
# curl \
# build-essential \
# libssl-dev \
# openssl

COPY ./server/package.json ./server/tsconfig.json ./

Expand Down

0 comments on commit ed5e099

Please sign in to comment.