Skip to content

Commit

Permalink
Fix copy file
Browse files Browse the repository at this point in the history
  • Loading branch information
hggq committed May 15, 2024
1 parent 2f9419d commit 308fd19
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions frameworks/C++/paozhu/paozhu.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ RUN mkdir ./paozhu/controller
RUN mkdir ./paozhu/controller/include
RUN mkdir ./paozhu/controller/src

COPY /controller/include/techempower.h ./paozhu/controller/include/
COPY /controller/src/techempower.cpp ./paozhu/controller/src/
COPY ./controller/include/techempower.h ./paozhu/controller/include/
COPY ./controller/src/techempower.cpp ./paozhu/controller/src/

COPY /libs/types/techempower_json.h ./paozhu/libs/types/
COPY /libs/types/techempower_json_jsonreflect.cpp ./paozhu/libs/types/
COPY ./libs/types/techempower_json.h ./paozhu/libs/types/
COPY ./libs/types/techempower_json_jsonreflect.cpp ./paozhu/libs/types/

COPY /common/autocontrolmethod.hpp ./paozhu/common/
COPY /common/reghttpmethod_pre.hpp ./paozhu/common/
COPY /common/reghttpmethod.hpp ./paozhu/common/
COPY /common/json_reflect_headers.h ./paozhu/common/
COPY ./common/autocontrolmethod.hpp ./paozhu/common/
COPY ./common/reghttpmethod_pre.hpp ./paozhu/common/
COPY ./common/reghttpmethod.hpp ./paozhu/common/
COPY ./common/json_reflect_headers.h ./paozhu/common/

COPY /conf/server.conf ./paozhu/conf/server.conf
COPY /conf/orm.conf ./paozhu/conf/orm.conf
COPY /CMakeLists.txt ./paozhu/CMakeLists.txt
COPY ./conf/server.conf ./paozhu/conf/server.conf
COPY ./conf/orm.conf ./paozhu/conf/orm.conf
COPY ./CMakeLists.txt ./paozhu/CMakeLists.txt

WORKDIR /paozhu
RUN unzip asio.zip
Expand Down

0 comments on commit 308fd19

Please sign in to comment.