infinite-craft / Dockerfile
ThongCoding's picture
aswdsd
730b0a8
FROM node:lts-alpine
WORKDIR /app
COPY . ./
RUN npm install
RUN chmod -R 777 /app
ENV PORT=5173
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]