Commit ·
a96ecc1
1
Parent(s): c288fd0
update dockerfile with CACHEBUST
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -10,6 +10,8 @@ RUN pip install --timeout=60 -r requirements.txt
|
|
| 10 |
RUN apt update && apt-get install libsndfile1 -y
|
| 11 |
RUN echo $(pip freeze) | md5sum | cut -d ' ' -f 1 >> code_version.txt
|
| 12 |
ARG REPO_URL
|
|
|
|
|
|
|
| 13 |
RUN git clone $REPO_URL
|
| 14 |
RUN workdir=/$(basename $REPO_URL)
|
| 15 |
WORKDIR $workdir
|
|
|
|
| 10 |
RUN apt update && apt-get install libsndfile1 -y
|
| 11 |
RUN echo $(pip freeze) | md5sum | cut -d ' ' -f 1 >> code_version.txt
|
| 12 |
ARG REPO_URL
|
| 13 |
+
ARG CACHEBUST
|
| 14 |
+
RUN echo ${CACHEBUST}
|
| 15 |
RUN git clone $REPO_URL
|
| 16 |
RUN workdir=/$(basename $REPO_URL)
|
| 17 |
WORKDIR $workdir
|