Last active
November 13, 2015 01:19
-
-
Save atrauzzi/74e746fbcf0e7e046147 to your computer and use it in GitHub Desktop.
Run ASP.NET 5 applications on Google App Engine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
runtime: custom | |
vm: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM microsoft/aspnet:1.0.0-beta8-coreclr | |
COPY project.json /app/ | |
WORKDIR /app | |
RUN ["dnu", "restore"] | |
COPY . /app | |
EXPOSE 8080 | |
ENTRYPOINT ["dnx", "-p", "project.json", "web"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"commands": { | |
"web": "Microsoft.AspNet.Server.Kestrel --server.urls http://*:8080/", |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment