version: '3'

services:
  app:
    build:
      context: .
      dockerfile: Dockerfile-dev
    volumes:
      - ./proxy/server/:/docker/app
      - ./build/:/docker/app/build
      - /docker/app/node_modules # Remove this if you have pure JS dependencies
    environment:
      DOCKER: "true"
    ports:
      - "3000:3001"
