Skip to content

Instantly share code, notes, and snippets.

@atrauzzi
Last active November 13, 2015 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atrauzzi/74e746fbcf0e7e046147 to your computer and use it in GitHub Desktop.
Save atrauzzi/74e746fbcf0e7e046147 to your computer and use it in GitHub Desktop.
Run ASP.NET 5 applications on Google App Engine
runtime: custom
vm: true
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"]
"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