May 17, 2015
ASP.NET 5 on Ubuntu on VirtualBox

I followed this mostly for the setup but your Dockerfile should look like this:
FROM microsoft/aspnet COPY project.json /app/ WORKDIR /app RUN ["dnu", "restore"] COPY . /app EXPOSE 5004 ENTRYPOINT ["dnx", "project.json", "kestrel"]
Be sure and set your VirtualBox setting to "Bridged" so you can hit the IP from your workstation.
Enjoy!
0 Comments
Sign in to join the conversation
Sign inBe the first to comment.