aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: e0b460062c9996498bc7e2561eb67d9c0c5e81bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM python:3

ARG GL_ACCESS_TOKEN
ARG GL_SECRET

WORKDIR /app

COPY . .

RUN pip install --no-cache-dir .

RUN lab-bot setup \
    --name="docker" \
    --access_token="$GL_ACCESS_TOKEN" \
    --secret="$GL_SECRET"

CMD [ "lab-bot", "run", "docker" ]