This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
old-shiloh-website/Dockerfile

14 lines
310 B
Docker
Raw Normal View History

2023-05-16 15:08:37 -07:00
FROM node:16-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY next.config.js ./next.config.js
COPY tailwind.config.js ./tailwind.config.js
COPY postcss.config.js ./postcss.config.js
2023-05-16 15:08:37 -07:00
COPY components ./components
COPY pages ./pages
COPY public ./public
COPY styles ./styles
CMD ["npm","run","dev"]