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

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
COPY components ./components
COPY pages ./pages
COPY public ./public
COPY styles ./styles
CMD ["npm","run","dev"]