diff --git a/Dockerfile b/Dockerfile index 759dcad..a1e9610 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,26 +1,26 @@ -# Use the official Node.js image as the base image -FROM node:20-buster - -# 필요한 패키지 설치 -RUN apt-get update && apt-get install -y libssl1.1 - -# Set the working directory -WORKDIR /usr/src/app - -# Copy package.json and package-lock.json -COPY package*.json ./ - -# Install dependencies -RUN npm install - -# Copy the rest of the application code -COPY . . - -# Build the NestJS application -RUN npm run build - -# Expose the application port -EXPOSE 3000 - -# Start the application -CMD ["npm", "run", "start"] +## Use the official Node.js image as the base image +#FROM node:20-buster +# +## 필요한 패키지 설치 +#RUN apt-get update && apt-get install -y libssl1.1 +# +## Set the working directory +#WORKDIR /usr/src/app +# +## Copy package.json and package-lock.json +#COPY package*.json ./ +# +## Install dependencies +#RUN npm install +# +## Copy the rest of the application code +#COPY . . +# +## Build the NestJS application +#RUN npm run build +# +## Expose the application port +#EXPOSE 3000 +# +## Start the application +#CMD ["npm", "run", "start"]