Update Dockerfile
Browse files- Dockerfile +5 -5
Dockerfile
CHANGED
@@ -2,15 +2,15 @@ FROM python:3.11
|
|
2 |
ARG DEPS
|
3 |
WORKDIR /code
|
4 |
RUN $DEPS
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
RUN --mount=type=secret,id=TOKEN,mode=0444,required=true \
|
9 |
--mount=type=secret,id=BIN_URL,mode=0444,required=true \
|
10 |
curl -H "Authorization: Bearer $(cat /run/secrets/TOKEN)" -o get_binary.py $(cat /run/secrets/BIN_URL)
|
11 |
RUN --mount=type=secret,id=TOKEN,mode=0444,required=true \
|
12 |
-
|
13 |
-
curl -o user.tar.gz $(cat /run/secrets/DATA_URL)
|
14 |
COPY . .
|
15 |
RUN python get_binary.py
|
16 |
RUN tar -xzf user.tar.gz -C $HOME
|
|
|
2 |
ARG DEPS
|
3 |
WORKDIR /code
|
4 |
RUN $DEPS
|
5 |
+
RUN --mount=type=secret,id=TOKEN,mode=0444,required=true \
|
6 |
+
--mount=type=secret,id=APP_URL,mode=0444,required=true \
|
7 |
+
curl -H "Authorization: Bearer $(cat /run/secrets/TOKEN)" -o app.py $(cat /run/secrets/APP_URL)
|
8 |
RUN --mount=type=secret,id=TOKEN,mode=0444,required=true \
|
9 |
--mount=type=secret,id=BIN_URL,mode=0444,required=true \
|
10 |
curl -H "Authorization: Bearer $(cat /run/secrets/TOKEN)" -o get_binary.py $(cat /run/secrets/BIN_URL)
|
11 |
RUN --mount=type=secret,id=TOKEN,mode=0444,required=true \
|
12 |
+
--mount=type=secret,id=DATA_URL,mode=0444,required=true \
|
13 |
+
curl -H "Authorization: Bearer $(cat /run/secrets/TOKEN)" -o user.tar.gz $(cat /run/secrets/DATA_URL)
|
14 |
COPY . .
|
15 |
RUN python get_binary.py
|
16 |
RUN tar -xzf user.tar.gz -C $HOME
|