render.app.frontend/Dockerfile.nodejs

8 lines
76 B
Docker

FROM node:18.19.1-alpine
WORKDIR /app
COPY . ./
RUN npm install --silent