Maxime Lecanu commited on
Commit
aeaa3b3
·
1 Parent(s): 79629a0

Fix Dockerfile

Browse files

- Remove GitHub credentials now that repo is public
- Install GUI dependencies

Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -8,7 +8,7 @@ apt install -y git curl && \
8
  curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \
9
  apt-get install -y git-lfs
10
 
11
- RUN git clone https://$GITHUB_USERNAME:$GITHUB_TOKEN@github.com/facebookresearch/meta-agents-research-environments.git && \
12
  cd meta-agents-research-environments && \
13
  git lfs install && \
14
  git lfs pull && \
@@ -77,7 +77,7 @@ COPY --from=fetch_repo /meta-agents-research-environments/LICENSE /app/LICENSE
77
  WORKDIR /app
78
  ARG VIRTUAL_ENV /app/.venv
79
  RUN --mount=type=cache,target=/root/.cache/pip uv venv
80
- RUN --mount=type=cache,target=/root/.cache/pip uv pip install '.'
81
  RUN rm -rf /app/are/gui/client
82
  COPY --from=frontend-builder /app/are/simulation/gui/client/build /app/are/simulation/gui/client/build
83
 
 
8
  curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \
9
  apt-get install -y git-lfs
10
 
11
+ RUN git clone https://github.com/facebookresearch/meta-agents-research-environments.git && \
12
  cd meta-agents-research-environments && \
13
  git lfs install && \
14
  git lfs pull && \
 
77
  WORKDIR /app
78
  ARG VIRTUAL_ENV /app/.venv
79
  RUN --mount=type=cache,target=/root/.cache/pip uv venv
80
+ RUN --mount=type=cache,target=/root/.cache/pip uv pip install '.[gui]'
81
  RUN rm -rf /app/are/gui/client
82
  COPY --from=frontend-builder /app/are/simulation/gui/client/build /app/are/simulation/gui/client/build
83