File size: 659 Bytes
5c263d5
 
 
 
8f80642
 
 
5c263d5
 
 
 
8f80642
5c263d5
8f80642
 
 
 
 
 
 
5c263d5
 
8f80642
 
5c263d5
 
8f80642
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
services:
  server:
    build:
      context: .
      # Enable BuildKit for better caching
      cache_from:
        - python:3.9
    ports:
      - 7860:7860
    develop:
      watch:
        # Only rebuild on requirements.txt changes, sync code changes otherwise
        - action: rebuild
          path: ./requirements.txt
        - action: sync
          path: ./src
          target: /home/user/app/src
        - action: sync
          path: ./README.md
          target: /home/user/app/README.md
    volumes:
      - python-cache:/home/user/.cache
      # Cache pip packages
      - pip-cache:/home/user/.cache/pip

volumes:
  python-cache:
  pip-cache: