Dockerfile_develop 134 B

1234567891011
  1. # Base image
  2. FROM node:18
  3. RUN npm install -g pnpm
  4. # Set the working directory in the container
  5. WORKDIR /app
  6. COPY .. .
  7. EXPOSE 8080