Files
flowsint/flowsint-web/Dockerfile
2025-02-27 23:23:34 +01:00

8 lines
115 B
Docker

FROM node:18
WORKDIR /app
COPY package.json yarn.lock ./
RUN pnpm install
COPY . .
EXPOSE 3000
CMD ["yarn", "dev"]