From cb781d6eaa7b19b49840543ee22f7bd243d97dec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Sandstr=C3=B6m?= Date: Tue, 4 Jan 2022 10:06:58 +0100 Subject: [PATCH] Fix incorrect reference in Dokerfile --- example_django_react_templatetags/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_django_react_templatetags/Dockerfile b/example_django_react_templatetags/Dockerfile index 9cd3b97..40060bc 100644 --- a/example_django_react_templatetags/Dockerfile +++ b/example_django_react_templatetags/Dockerfile @@ -14,7 +14,7 @@ WORKDIR /app ADD . /app/ RUN pip install --upgrade pip \ - && pip install -r requirements/$REQUIREMENTS --no-cache-dir + && pip install -r $REQUIREMENTS --no-cache-dir EXPOSE 8080