Where is my source code on docker container
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
Where does docker keep the source code?
c# .net docker asp.net-web-api
add a comment |
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
Where does docker keep the source code?
c# .net docker asp.net-web-api
It doesn't necessarily; it only keeps what's explicitlyCOPY
d orADD
ed 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
add a comment |
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
Where does docker keep the source code?
c# .net docker asp.net-web-api
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
Where does docker keep the source code?
c# .net docker asp.net-web-api
c# .net docker asp.net-web-api
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 explicitlyCOPY
d orADD
ed 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
add a comment |
It doesn't necessarily; it only keeps what's explicitlyCOPY
d orADD
ed 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
COPY
d or ADD
ed 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
COPY
d or ADD
ed 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
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
edited Jan 2 at 2:53
answered Jan 2 at 2:48
Max♦Max
3,39883651
3,39883651
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
It doesn't necessarily; it only keeps what's explicitly
COPY
d orADD
ed 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