maom commited on
Commit
7ffdc76
·
verified ·
1 Parent(s): 4a71a44

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -9,9 +9,11 @@ RUN apt-get update && apt-get install -y \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  COPY requirements.txt ./
12
- COPY src/ ./src/
 
13
  COPY sections/ ./sections/
14
- copy examples/ ./examples/
 
15
 
16
  RUN pip3 install -r requirements.txt
17
 
 
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  COPY requirements.txt ./
12
+ COPY assets/ ./assets/
13
+ COPY examples/ ./examples/
14
  COPY sections/ ./sections/
15
+ COPY src/ ./src/
16
+
17
 
18
  RUN pip3 install -r requirements.txt
19