Suhwan Choi
commited on
Commit
·
8dbde7a
1
Parent(s):
030bda4
fix bug
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
@@ -28,11 +28,15 @@ RUN useradd -m -u 1000 user
|
|
28 |
|
29 |
# Install LeRobot
|
30 |
RUN git clone --depth 1 https://github.com/open-world-agents/open-world-agents /owa
|
|
|
|
|
|
|
|
|
31 |
WORKDIR /owa/projects/owa-mcap-viewer
|
32 |
RUN --mount=type=cache,target=/home/user/.cache/uv \
|
33 |
# --mount=type=bind,source=uv.lock,target=uv.lock \
|
34 |
# --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
|
35 |
-
vuv
|
36 |
|
37 |
# Prepare example datasets
|
38 |
RUN --mount=type=cache,target=/home/user/.cache/uv \
|
|
|
28 |
|
29 |
# Install LeRobot
|
30 |
RUN git clone --depth 1 https://github.com/open-world-agents/open-world-agents /owa
|
31 |
+
WORKDIR /owa
|
32 |
+
RUN --mount=type=cache,target=/home/user/.cache/uv \
|
33 |
+
vuv install --frozen
|
34 |
+
|
35 |
WORKDIR /owa/projects/owa-mcap-viewer
|
36 |
RUN --mount=type=cache,target=/home/user/.cache/uv \
|
37 |
# --mount=type=bind,source=uv.lock,target=uv.lock \
|
38 |
# --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
|
39 |
+
vuv install --frozen
|
40 |
|
41 |
# Prepare example datasets
|
42 |
RUN --mount=type=cache,target=/home/user/.cache/uv \
|