tcmmichaelb139 commited on
Commit
f04d1a5
·
1 Parent(s): 4d092f5

hopefully fix

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -15,9 +15,10 @@ RUN pip install uv
15
 
16
  COPY pyproject.toml uv.lock ./
17
 
18
- RUN uv export --no-dev | uv pip install --system -r -
19
 
20
- COPY evolutiontransformer/ ./evolutiontransformer/
 
21
 
22
  COPY start.sh .
23
 
 
15
 
16
  COPY pyproject.toml uv.lock ./
17
 
18
+ RUN uv sync --no-dev
19
 
20
+ COPY --chown=user:user evolutiontransformer/ ./evolutiontransformer/
21
+ COPY --chown=user:user start.sh .
22
 
23
  COPY start.sh .
24