28 lines
644 B
Docker
28 lines
644 B
Docker
# Use the official Node.js image as the base image
|
|
FROM oven/bun:1.2.10
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set the working directory inside the container
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy package.json and package-lock.json to the working directory
|
|
COPY package.json ./
|
|
COPY bun.lock ./
|
|
|
|
# Install the application dependencies
|
|
RUN bun install --production
|
|
|
|
# Copy the rest of the application files
|
|
COPY . .
|
|
|
|
# Build the NestJS application
|
|
RUN bun run build
|
|
|
|
# Expose the application port
|
|
EXPOSE 3000
|
|
|
|
# Command to run the application
|
|
CMD ["bun", "run", "start"] |