Skip to content

Commit 288a534

Browse files
committed
Try to avoid caching the configurator package
1 parent 057f341 commit 288a534

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Containerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ RUN mkdir /root/wheels
1010

1111
RUN pip wheel -w /root/wheels --no-deps jsonnet
1212

13-
RUN pip wheel -w /root/wheels --no-deps --no-cache-dir \
14-
git+https://github.com/trustgraph-ai/trustgraph-templates
13+
RUN mkdir -p /root/src
14+
15+
RUN git clone https://github.com/trustgraph-ai/trustgraph-templates \
16+
/root/src/templates
17+
18+
RUN pip wheel -w /root/wheels --no-deps /root/src/templates
1519

1620
COPY config-ui /root/config-ui/
1721

0 commit comments

Comments
 (0)