Pierre Andrews commited on
Commit
7ec7056
·
1 Parent(s): 6ac5bb0

no more secrets

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -8,10 +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 --mount=type=secret,id=github_username,required=true --mount=type=secret,id=github_token,required=true \
12
- GITHUB_USERNAME=$(cat /run/secrets/github_username) && \
13
- GITHUB_TOKEN=$(cat /run/secrets/github_token) && \
14
- git clone https://$GITHUB_USERNAME:$GITHUB_TOKEN@github.com/facebookresearch/meta-agents-research-environments.git && \
15
  cd meta-agents-research-environments && \
16
  git lfs install && \
17
  git lfs pull && \
 
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 && \