gsplat-editor / Dockerfile
dylanebert's picture
dylanebert HF staff
initial commit
e6b949c
raw
history blame
No virus
155 Bytes
FROM node:alpine
WORKDIR /app
COPY editor/package.json package.json
RUN npm install
COPY editor/ /app
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]