Skip to content

Commit

Permalink
Merge branch 'improve-proxy-dockerfile' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
zamronypj committed Mar 24, 2023
2 parents cf6cedb + d85fea5 commit eed9e8d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

github: [zamronypj]
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ strBuildDispatcherImpl : string =
'' + LineEnding +
' container.add(' + LineEnding +
' GuidToString(IDispatcher),' + LineEnding +
' TDispatcherFactory.create(' + LineEnding +
' TMwExecDispatcherFactory.create(' + LineEnding +
' container[''appMiddlewares''] as IMiddlewareLinkList,' + LineEnding +
' routeMatcher,' + LineEnding +
' TRequestResponseFactory.create()' + LineEnding +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ strDockerfile : string =
'' + LineEnding +
'COPY ./config/ /usr/local/fano/config' + LineEnding +
'COPY ./resources/ /usr/local/fano/resources' + LineEnding +
'COPY ./storages/ /usr/local/fano/storages' + LineEnding +
'COPY ./public/ /usr/local/fano/public' + LineEnding +
'COPY ./bin/app.cgi /usr/local/fano/app.cgi' + LineEnding +
'WORKDIR /usr/local/fano/' + LineEnding +
'CMD ["/usr/local/fano/app.cgi", "--host=0.0.0.0", "--port=7704"]' + LineEnding;
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ strDockerfile : string =
'' + LineEnding +
'COPY ./config/ /usr/local/fano/config' + LineEnding +
'COPY ./resources/ /usr/local/fano/resources' + LineEnding +
'COPY ./storages/ /usr/local/fano/storages' + LineEnding +
'COPY ./public/ /usr/local/fano/public' + LineEnding +
'COPY ./bin/app.cgi /usr/local/fano/app.cgi' + LineEnding +
'WORKDIR /usr/local/fano/' + LineEnding +
'CMD ["/usr/local/fano/app.cgi", "--host=0.0.0.0", "--port=7704"]' + LineEnding;
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ strDockerfile : string =
'' + LineEnding +
'COPY ./config/ /usr/local/fano/config' + LineEnding +
'COPY ./resources/ /usr/local/fano/resources' + LineEnding +
'COPY ./storages/ /usr/local/fano/storages' + LineEnding +
'COPY ./public/ /usr/local/fano/public' + LineEnding +
'COPY ./bin/app.cgi /usr/local/fano/app.cgi' + LineEnding +
'WORKDIR /usr/local/fano/' + LineEnding +
'CMD ["/usr/local/fano/app.cgi", "--host=0.0.0.0", "--port=7704"]' + LineEnding;

0 comments on commit eed9e8d

Please sign in to comment.