2023-07-12 11:21:38 +01:00
|
|
|
FROM node:lts-slim
|
2023-07-08 20:49:08 +01:00
|
|
|
|
2023-07-01 20:43:53 +00:00
|
|
|
ENV NODE_ENV=production
|
|
|
|
WORKDIR /usr/src/app
|
2023-07-12 11:21:38 +01:00
|
|
|
|
2023-07-12 14:24:42 +01:00
|
|
|
RUN apt update
|
2023-07-12 14:26:54 +01:00
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt install wget -y
|
2023-07-12 14:23:50 +01:00
|
|
|
|
2023-07-12 11:21:38 +01:00
|
|
|
# Copy package.json and package-lock.json separately to fully utilize Docker layer caching
|
|
|
|
COPY package.json ./
|
|
|
|
COPY package-lock.json ./
|
|
|
|
RUN npm ci --production --silent && npm cache clean --force
|
|
|
|
|
|
|
|
# Opt out of Next.js telemetry
|
2023-07-02 12:05:27 +01:00
|
|
|
RUN npx next telemetry disable
|
|
|
|
|
2023-07-12 11:30:38 +01:00
|
|
|
# Copy the rest of the files
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Remove development dependencies
|
|
|
|
RUN npm prune --production
|
|
|
|
|
2023-07-12 13:55:48 +01:00
|
|
|
# Environment Variables
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
|
2023-07-12 11:21:38 +01:00
|
|
|
# Expose port 3000
|
|
|
|
EXPOSE 3000
|
|
|
|
|
|
|
|
# Start the app
|
2023-07-12 14:02:33 +01:00
|
|
|
CMD ["bash", "start.sh"]
|