Skip to content

Commit caf4d7f

Browse files
author
Shamal Faily
committed
Fix broken paths
1 parent 74ebb31 commit caf4d7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ RUN apt-get install -y build-essential \
2424

2525
RUN pip3 install wheel --break-system-packages
2626
#Installing Python modules
27-
COPY requirements.txt /
28-
RUN pip3 install -r docker/requirements.txt --break-system-packages
29-
COPY wsgi_requirements.txt /
27+
COPY docker/requirements.txt /
28+
RUN pip3 install -r requirements.txt --break-system-packages
29+
COPY docker/wsgi_requirements.txt /
3030
RUN pip3 install -r docker/wsgi_requirements.txt --break-system-packages
3131

3232
#Environment Variable starts from here

0 commit comments

Comments
 (0)