Commit 8d0ef38f authored by apuy's avatar apuy

Add new file

parent a33dfdce
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 9000
CMD ["npm", "run", "preview", "--", "--host", "0.0.0.0", "--port", "9000"]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment