diff --git a/apps/api/Dockerfile.next b/apps/api/Dockerfile.next new file mode 100644 index 000000000..11c6f5f64 --- /dev/null +++ b/apps/api/Dockerfile.next @@ -0,0 +1,16 @@ +FROM node:18-alpine +WORKDIR /app + +ENV NODE_ENV=production + +ARG CACHEBUST=0 + +COPY . /app + +RUN npm install + +ARG CACHEBUST=1 + +RUN ls + +EXPOSE 3000