12 lines
222 B
Docker
12 lines
222 B
Docker
|
FROM node:16-alpine
|
||
|
WORKDIR /app
|
||
|
COPY package.json ./
|
||
|
RUN npm install
|
||
|
|
||
|
COPY next.config.js ./next.config.js
|
||
|
COPY components ./components
|
||
|
COPY pages ./pages
|
||
|
COPY public ./public
|
||
|
COPY styles ./styles
|
||
|
|
||
|
CMD ["npm","run","dev"]
|