File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
1414 git
1515
1616# Requirements are installed here to ensure they will be cached.
17- COPY ./requirements.txt .
17+ COPY ./django_simple/ requirements.txt .
1818
1919# Create Python Dependency and Sub-Dependency Wheels.
2020RUN pip wheel --wheel-dir /usr/src/app/wheels \
@@ -62,7 +62,7 @@ RUN curl -L -o /usr/bin/jq https://github.com/stedolan/jq/releases/download/jq-1
6262 chmod +x /usr/bin/jq
6363
6464# copy application code to WORKDIR
65- COPY --chown=django:django . ${APP_HOME}
65+ COPY --chown=django:django ./django_simple ${APP_HOME}
6666
6767# make django owner of the WORKDIR directory as well.
6868RUN chown django:django ${APP_HOME}
Original file line number Diff line number Diff line change 88
99Use docker to build the image which will run tests and store output in an artifacts directory::
1010
11- docker build -t django_simple benchmarks/django_simple/
11+ docker build -t django_simple -f benchmarks/django_simple.Dockerfile benchmarks /
1212
1313Run
1414---
You can’t perform that action at this time.
0 commit comments