diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 714ce43..0000000 --- a/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -FROM node:18-alpine AS build - -COPY . . - -EXPOSE 3000 -CMD ["npm", "run", "dev"] - -# Once the nextjs route errors are fixed, this kind of docker build can be used -# FROM node:18-alpine AS build - -# WORKDIR /app -# COPY package*.json ./ -# RUN npm ci -# COPY . . -# RUN npm run build - -# FROM node:18-alpine AS runtime - -# WORKDIR /app -# COPY package*.json ./ -# RUN npm ci --only=production -# COPY --from=build /app/.next ./.next -# COPY --from=build /app/public ./public - -# EXPOSE 3000 -# USER node -# CMD ["npm", "start"] \ No newline at end of file