# syntax=docker/dockerfile:1

FROM node:18.18.0-bullseye

WORKDIR /app

EXPOSE 3000

COPY . .

RUN npm install

CMD ["npm", "run", "dev"]