Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

Commit

Permalink
Merge pull request #147 from mrtrantuan/main-2
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
codebanesr authored Aug 22, 2023
2 parents 6e3a1d7 + 3d43833 commit f73d11b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llm-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ RUN npm run build
FROM node:18-alpine as runner
WORKDIR /my-space
COPY --from=builder /my-space/package.json .
COPY --from=builder /my-space/package-lock.json .
# COPY --from=builder /my-space/package-lock.json .
COPY --from=builder /my-space/next.config.js ./
# COPY --from=builder /my-space/public ./public
COPY --from=builder /my-space/.next/standalone ./
COPY --from=builder /my-space/.next/static ./.next/static

EXPOSE 3000
CMD ["node", "server.js"]
CMD ["node", "server.js"]

0 comments on commit f73d11b

Please sign in to comment.