deechael.net/Dockerfile

23 lines
352 B
Docker
Raw Normal View History

2024-09-19 21:45:28 +08:00
FROM node:18
2024-09-19 21:02:04 +08:00
2024-09-19 21:36:51 +08:00
WORKDIR /run
2024-09-19 21:02:04 +08:00
2024-09-19 21:36:51 +08:00
COPY package*.json ./
2024-09-19 21:02:04 +08:00
COPY components ./components
COPY styles ./styles
COPY app ./app
COPY config ./config
COPY types ./types
COPY public ./public
COPY next.config.js .
COPY tsconfig.json .
COPY postcss.config.js .
COPY tailwind.config.js .
2024-09-19 21:36:51 +08:00
RUN npm install
2024-09-19 21:02:04 +08:00
2024-09-19 21:36:51 +08:00
RUN npm run build
RUN npm run start
2024-09-19 21:02:04 +08:00
2024-09-19 21:36:51 +08:00
# CMD ["node", "index.js"]