File size: 424 Bytes
cb83b86
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM node:18-alpine

RUN apk add --no-cache curl bash

RUN curl -fsSL https://bun.sh/install | bash
ENV PATH="/root/.bun/bin:$PATH"

WORKDIR /app

# Clone the December Next.js template repository
RUN curl -L https://github.com/ntegrals/december-nextjs-template/archive/main.tar.gz | tar -xz && \
    mv december-nextjs-template-main my-nextjs-app

WORKDIR /app/my-nextjs-app

RUN bun install

EXPOSE 3001

CMD ["bun", "dev"]