Update node version and enable host network

This commit is contained in:
Rahul Bhardwaj 2024-10-06 22:14:54 +05:30
parent 816d6d5f81
commit f90f60b353

View File

@ -1,4 +1,4 @@
FROM node:20.15.1
FROM node:20.18.0
WORKDIR /app
@ -13,4 +13,4 @@ RUN pnpm install
# Expose the port the app runs on
EXPOSE 5173
CMD [ "pnpm", "run", "dev" ]
CMD [ "pnpm", "run", "dev", "--host" ]