Skip to content

Commit eed9e8d

Browse files
committed
Merge branch 'improve-proxy-dockerfile' into development
2 parents cf6cedb + d85fea5 commit eed9e8d

5 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
github: [zamronypj]

src/Tasks/Implementations/Middleware/Support/Includes/buildDispatcher.impl.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ strBuildDispatcherImpl : string =
1616
'' + LineEnding +
1717
' container.add(' + LineEnding +
1818
' GuidToString(IDispatcher),' + LineEnding +
19-
' TDispatcherFactory.create(' + LineEnding +
19+
' TMwExecDispatcherFactory.create(' + LineEnding +
2020
' container[''appMiddlewares''] as IMiddlewareLinkList,' + LineEnding +
2121
' routeMatcher,' + LineEnding +
2222
' TRequestResponseFactory.create()' + LineEnding +

src/Tasks/Implementations/Project/FastCgi/Includes/fano_dockerfile.inc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ strDockerfile : string =
1414
'' + LineEnding +
1515
'COPY ./config/ /usr/local/fano/config' + LineEnding +
1616
'COPY ./resources/ /usr/local/fano/resources' + LineEnding +
17+
'COPY ./storages/ /usr/local/fano/storages' + LineEnding +
18+
'COPY ./public/ /usr/local/fano/public' + LineEnding +
1719
'COPY ./bin/app.cgi /usr/local/fano/app.cgi' + LineEnding +
20+
'WORKDIR /usr/local/fano/' + LineEnding +
1821
'CMD ["/usr/local/fano/app.cgi", "--host=0.0.0.0", "--port=7704"]' + LineEnding;

src/Tasks/Implementations/Project/Scgi/Includes/fano_dockerfile.inc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ strDockerfile : string =
1414
'' + LineEnding +
1515
'COPY ./config/ /usr/local/fano/config' + LineEnding +
1616
'COPY ./resources/ /usr/local/fano/resources' + LineEnding +
17+
'COPY ./storages/ /usr/local/fano/storages' + LineEnding +
18+
'COPY ./public/ /usr/local/fano/public' + LineEnding +
1719
'COPY ./bin/app.cgi /usr/local/fano/app.cgi' + LineEnding +
20+
'WORKDIR /usr/local/fano/' + LineEnding +
1821
'CMD ["/usr/local/fano/app.cgi", "--host=0.0.0.0", "--port=7704"]' + LineEnding;

src/Tasks/Implementations/Project/Uwsgi/Includes/fano_dockerfile.inc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ strDockerfile : string =
1414
'' + LineEnding +
1515
'COPY ./config/ /usr/local/fano/config' + LineEnding +
1616
'COPY ./resources/ /usr/local/fano/resources' + LineEnding +
17+
'COPY ./storages/ /usr/local/fano/storages' + LineEnding +
18+
'COPY ./public/ /usr/local/fano/public' + LineEnding +
1719
'COPY ./bin/app.cgi /usr/local/fano/app.cgi' + LineEnding +
20+
'WORKDIR /usr/local/fano/' + LineEnding +
1821
'CMD ["/usr/local/fano/app.cgi", "--host=0.0.0.0", "--port=7704"]' + LineEnding;

0 commit comments

Comments
 (0)