DockerRoblox / Dockerfile
Joey889's picture
Upload 8 files
623561b verified
raw
history blame contribute delete
171 Bytes
FROM node:20
WORKDIR /app
COPY . .
RUN npm install --legacy-peer-deps
RUN npm run build
RUN npm install -g serve
EXPOSE 7860
CMD ["serve", "-s", "dist", "-l", "7860"]