Skip to content

Commit 74ebb31

Browse files
author
Shamal Faily
committed
Change Dockerfile paths
1 parent fae0c6f commit 74ebb31

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ RUN apt-get install -y build-essential \
2525
RUN pip3 install wheel --break-system-packages
2626
#Installing Python modules
2727
COPY requirements.txt /
28-
RUN pip3 install -r requirements.txt --break-system-packages
28+
RUN pip3 install -r docker/requirements.txt --break-system-packages
2929
COPY wsgi_requirements.txt /
30-
RUN pip3 install -r wsgi_requirements.txt --break-system-packages
30+
RUN pip3 install -r docker/wsgi_requirements.txt --break-system-packages
3131

3232
#Environment Variable starts from here
3333
ENV CAIRIS_SRC=/cairis/cairis
@@ -47,11 +47,11 @@ RUN mkdir /cairisTmp &&\
4747
rm -rf /cairis/ &&\
4848
mv /cairisTmp/ /cairis/
4949

50-
COPY cairis.cnf /
51-
COPY setupDb.sh /
52-
COPY createdb.sql /
53-
COPY addAccount.sh /
54-
COPY register_user.html /cairis/cairis/daemon/templates/security
50+
COPY docker/cairis.cnf /
51+
COPY docker/setupDb.sh /
52+
COPY docker/createdb.sql /
53+
COPY docker/addAccount.sh /
54+
COPY docker/register_user.html /cairis/cairis/daemon/templates/security
5555

5656
RUN /cairis/cairis/bin/installUI.sh
5757

0 commit comments

Comments
 (0)