AIwithDocker / Dockerfile
Raumkommander2
inital deployment1
ff373c0
raw
history blame contribute delete
172 Bytes
FROM node:18-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . ./
RUN npm run build
CMD ["npx", "serve", "-s", "build", "-l", "7860"]