petter2025 commited on
Commit
2c09cd1
·
verified ·
1 Parent(s): c34e861

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,8 +2,8 @@ FROM python:3.12-slim
2
  RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
3
  WORKDIR /app
4
 
5
- ARG ARF_GITHUB_PAT
6
- RUN git config --global url."https://x-access-token:${ARF_GITHUB_PAT}@github.com/".insteadOf "https://github.com/"
7
 
8
  COPY requirements.txt .
9
  RUN pip install --no-cache-dir -r requirements.txt
 
2
  RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
3
  WORKDIR /app
4
 
5
+ ARG CLASSIC_TOKEN=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
6
+ RUN git config --global url."https://x-access-token:${CLASSIC_TOKEN}@github.com/".insteadOf "https://github.com/"
7
 
8
  COPY requirements.txt .
9
  RUN pip install --no-cache-dir -r requirements.txt