simple-links/Dockerfile
Liam e10d108ca8
Some checks failed
Publish Docker Image / docker (push) Failing after 34s
im a little silly - update image
2023-10-15 01:47:19 +01:00

27 lines
578 B
Docker

FROM fascinated/docker-images:node-pnpm-latest
ENV NODE_ENV=production
WORKDIR /usr/src/app
# Copy package.json and package-lock.json separately to fully utilize Docker layer caching
COPY package.json ./
COPY pnpm-lock.yaml ./
RUN pnpm ci --production --silent && pnpm cache clean --force
# Opt out of Next.js telemetry
RUN npx next telemetry disable
# Copy the rest of the files
COPY . .
# Remove development dependencies
RUN pnpm prune --production
# Environment Variables
ENV NODE_ENV=production
# Expose port 3000
EXPOSE 3000
# Start the app
CMD ["bash", "start.sh"]