Where is my source code on docker container












2















I used following docker script to build and run my ASP.NET Web API project on .net 4.6.1 framework.



FROM microsoft/dotnet-framework:4.7.2-sdk AS build
WORKDIR /app

# copy csproj and restore as distinct layers
COPY *.sln .
COPY TestWebAPI/*.csproj ./TestWebAPI/
COPY TestWebAPI/*.config ./TestWebAPI/
RUN nuget restore

# copy everything else and build app
COPY TestWebAPI/. ./TestWebAPI/
WORKDIR /app/TestWebAPI
RUN msbuild /p:Configuration=Release


FROM microsoft/aspnet:4.7.2 AS runtime
WORKDIR /inetpub/wwwroot
COPY --from=build /app/TestWebAPI/. ./


In the first step I am setting app folder as my working directory. But after creating container, I do not see any folder name app on my C:



--To create Image
docker image build --tag testwebapi --file .Dockerfile .

--To run container
docker container run --detach --publish 80 testwebapi

--To see containers content
docker exec -i -t a1da40af6b3c powershell


enter image description here



Where does docker keep the source code?










share|improve this question

























  • It doesn't necessarily; it only keeps what's explicitly COPYd or ADDed in. If you can add a binary executable to an image, often the source code and build tools won't be included.

    – David Maze
    Jan 2 at 11:17
















2















I used following docker script to build and run my ASP.NET Web API project on .net 4.6.1 framework.



FROM microsoft/dotnet-framework:4.7.2-sdk AS build
WORKDIR /app

# copy csproj and restore as distinct layers
COPY *.sln .
COPY TestWebAPI/*.csproj ./TestWebAPI/
COPY TestWebAPI/*.config ./TestWebAPI/
RUN nuget restore

# copy everything else and build app
COPY TestWebAPI/. ./TestWebAPI/
WORKDIR /app/TestWebAPI
RUN msbuild /p:Configuration=Release


FROM microsoft/aspnet:4.7.2 AS runtime
WORKDIR /inetpub/wwwroot
COPY --from=build /app/TestWebAPI/. ./


In the first step I am setting app folder as my working directory. But after creating container, I do not see any folder name app on my C:



--To create Image
docker image build --tag testwebapi --file .Dockerfile .

--To run container
docker container run --detach --publish 80 testwebapi

--To see containers content
docker exec -i -t a1da40af6b3c powershell


enter image description here



Where does docker keep the source code?










share|improve this question

























  • It doesn't necessarily; it only keeps what's explicitly COPYd or ADDed in. If you can add a binary executable to an image, often the source code and build tools won't be included.

    – David Maze
    Jan 2 at 11:17














2












2








2








I used following docker script to build and run my ASP.NET Web API project on .net 4.6.1 framework.



FROM microsoft/dotnet-framework:4.7.2-sdk AS build
WORKDIR /app

# copy csproj and restore as distinct layers
COPY *.sln .
COPY TestWebAPI/*.csproj ./TestWebAPI/
COPY TestWebAPI/*.config ./TestWebAPI/
RUN nuget restore

# copy everything else and build app
COPY TestWebAPI/. ./TestWebAPI/
WORKDIR /app/TestWebAPI
RUN msbuild /p:Configuration=Release


FROM microsoft/aspnet:4.7.2 AS runtime
WORKDIR /inetpub/wwwroot
COPY --from=build /app/TestWebAPI/. ./


In the first step I am setting app folder as my working directory. But after creating container, I do not see any folder name app on my C:



--To create Image
docker image build --tag testwebapi --file .Dockerfile .

--To run container
docker container run --detach --publish 80 testwebapi

--To see containers content
docker exec -i -t a1da40af6b3c powershell


enter image description here



Where does docker keep the source code?










share|improve this question
















I used following docker script to build and run my ASP.NET Web API project on .net 4.6.1 framework.



FROM microsoft/dotnet-framework:4.7.2-sdk AS build
WORKDIR /app

# copy csproj and restore as distinct layers
COPY *.sln .
COPY TestWebAPI/*.csproj ./TestWebAPI/
COPY TestWebAPI/*.config ./TestWebAPI/
RUN nuget restore

# copy everything else and build app
COPY TestWebAPI/. ./TestWebAPI/
WORKDIR /app/TestWebAPI
RUN msbuild /p:Configuration=Release


FROM microsoft/aspnet:4.7.2 AS runtime
WORKDIR /inetpub/wwwroot
COPY --from=build /app/TestWebAPI/. ./


In the first step I am setting app folder as my working directory. But after creating container, I do not see any folder name app on my C:



--To create Image
docker image build --tag testwebapi --file .Dockerfile .

--To run container
docker container run --detach --publish 80 testwebapi

--To see containers content
docker exec -i -t a1da40af6b3c powershell


enter image description here



Where does docker keep the source code?







c# .net docker asp.net-web-api






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 2 at 11:16









David Maze

15.3k31430




15.3k31430










asked Jan 2 at 2:00









OpenStackOpenStack

75131030




75131030













  • It doesn't necessarily; it only keeps what's explicitly COPYd or ADDed in. If you can add a binary executable to an image, often the source code and build tools won't be included.

    – David Maze
    Jan 2 at 11:17



















  • It doesn't necessarily; it only keeps what's explicitly COPYd or ADDed in. If you can add a binary executable to an image, often the source code and build tools won't be included.

    – David Maze
    Jan 2 at 11:17

















It doesn't necessarily; it only keeps what's explicitly COPYd or ADDed in. If you can add a binary executable to an image, often the source code and build tools won't be included.

– David Maze
Jan 2 at 11:17





It doesn't necessarily; it only keeps what's explicitly COPYd or ADDed in. If you can add a binary executable to an image, often the source code and build tools won't be included.

– David Maze
Jan 2 at 11:17












1 Answer
1






active

oldest

votes


















3














You'll find your files in c:inetpubwwwroot.



Note that your Dockerfile has two FROM lines:



FROM microsoft/dotnet-framework:4.7.2-sdk AS build
...
FROM microsoft/aspnet:4.7.2 AS runtime


This is using a relatively new Docker feature called multi-stage builds. Basically, only the instructions from the second (and last) stage determine what's copied into the actual image:



WORKDIR /inetpub/wwwroot
COPY --from=build /app/TestWebAPI/. ./


Note that --from=build references the output of first stage - think of it as a temporary image. /inetpub/wwwroot is the WORKDIR of the second stage, so that's where you'll find the files from the final COPY step.






share|improve this answer

























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54000425%2fwhere-is-my-source-code-on-docker-container%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    You'll find your files in c:inetpubwwwroot.



    Note that your Dockerfile has two FROM lines:



    FROM microsoft/dotnet-framework:4.7.2-sdk AS build
    ...
    FROM microsoft/aspnet:4.7.2 AS runtime


    This is using a relatively new Docker feature called multi-stage builds. Basically, only the instructions from the second (and last) stage determine what's copied into the actual image:



    WORKDIR /inetpub/wwwroot
    COPY --from=build /app/TestWebAPI/. ./


    Note that --from=build references the output of first stage - think of it as a temporary image. /inetpub/wwwroot is the WORKDIR of the second stage, so that's where you'll find the files from the final COPY step.






    share|improve this answer






























      3














      You'll find your files in c:inetpubwwwroot.



      Note that your Dockerfile has two FROM lines:



      FROM microsoft/dotnet-framework:4.7.2-sdk AS build
      ...
      FROM microsoft/aspnet:4.7.2 AS runtime


      This is using a relatively new Docker feature called multi-stage builds. Basically, only the instructions from the second (and last) stage determine what's copied into the actual image:



      WORKDIR /inetpub/wwwroot
      COPY --from=build /app/TestWebAPI/. ./


      Note that --from=build references the output of first stage - think of it as a temporary image. /inetpub/wwwroot is the WORKDIR of the second stage, so that's where you'll find the files from the final COPY step.






      share|improve this answer




























        3












        3








        3







        You'll find your files in c:inetpubwwwroot.



        Note that your Dockerfile has two FROM lines:



        FROM microsoft/dotnet-framework:4.7.2-sdk AS build
        ...
        FROM microsoft/aspnet:4.7.2 AS runtime


        This is using a relatively new Docker feature called multi-stage builds. Basically, only the instructions from the second (and last) stage determine what's copied into the actual image:



        WORKDIR /inetpub/wwwroot
        COPY --from=build /app/TestWebAPI/. ./


        Note that --from=build references the output of first stage - think of it as a temporary image. /inetpub/wwwroot is the WORKDIR of the second stage, so that's where you'll find the files from the final COPY step.






        share|improve this answer















        You'll find your files in c:inetpubwwwroot.



        Note that your Dockerfile has two FROM lines:



        FROM microsoft/dotnet-framework:4.7.2-sdk AS build
        ...
        FROM microsoft/aspnet:4.7.2 AS runtime


        This is using a relatively new Docker feature called multi-stage builds. Basically, only the instructions from the second (and last) stage determine what's copied into the actual image:



        WORKDIR /inetpub/wwwroot
        COPY --from=build /app/TestWebAPI/. ./


        Note that --from=build references the output of first stage - think of it as a temporary image. /inetpub/wwwroot is the WORKDIR of the second stage, so that's where you'll find the files from the final COPY step.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jan 2 at 2:53

























        answered Jan 2 at 2:48









        MaxMax

        3,39883651




        3,39883651
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54000425%2fwhere-is-my-source-code-on-docker-container%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

            How to fix TextFormField cause rebuild widget in Flutter