FROM node:16-bullseye-slim WORKDIR src COPY . /src/ RUN npm install EXPOSE 1313 CMD ["npm", "run", "start"]