Installing LaTeX into Google's Debian8 docker image












0















I'm trying to figure out how to install LaTeX (specifically, this texlive package) into Google's Debian8 Docker image, which is called gcr.io/google-appengine/debian8. I wish I could provide a link to that, but I can't find it on Docker or on GitHub. Actually, I'm using this image which derives indirectly from it.



If I try and install it into the image I get an error:



> apt-get install texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package texlive


I suspect I need to add an appropriate source (and possibly key) to the apt sources, but I have no idea how to figure out what exactly. I believe I'd end up with a Docker command along the lines of this (but likely simpler):



RUN 
apt-get -q update && apt-get install --no-install-recommends -y -q curl git ca-certificates apt-transport-https openssh-client &&
curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - &&
curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list &&
curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_unstable.list > /etc/apt/sources.list.d/dart_unstable.list &&
apt-get update &&
apt-get install dart=$DART_VERSION-1 &&
rm -rf /var/lib/apt/lists/*


Can anyone point me in the right direction here? How do I determine what needs to be added to /etc/apt/sources to make the texlive package show up?










share|improve this question

















This question has an open bounty worth +50
reputation from me-- ending in 3 days.


Looking for an answer drawing from credible and/or official sources.












  • 1





    What makes you think that google/dart is based on debian8? I can't find this. It seems poorly documented.

    – ctrl-alt-delor
    Mar 8 at 7:47











  • @ctrl-alt-delor this does: github.com/dart-lang/dart_docker/blob/master/base/…

    – me--
    Mar 8 at 8:55











  • I pulled google-appengine/debian8 with docker, run a terminal, did a apt search. textlive package is in the repo. Did you run apt update before calling apt-get install texlive?

    – JohnKoch
    Mar 10 at 14:09











  • Did you check your sources.list right after installation? How does it look like now? Must it be a google image or did you just choose randomly?

    – Nepumuk
    Mar 10 at 16:37













  • Do you have a line like deb http://ftp.de.debian.org/debian jessie main in your sources.list?

    – Nepumuk
    Mar 10 at 16:43
















0















I'm trying to figure out how to install LaTeX (specifically, this texlive package) into Google's Debian8 Docker image, which is called gcr.io/google-appengine/debian8. I wish I could provide a link to that, but I can't find it on Docker or on GitHub. Actually, I'm using this image which derives indirectly from it.



If I try and install it into the image I get an error:



> apt-get install texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package texlive


I suspect I need to add an appropriate source (and possibly key) to the apt sources, but I have no idea how to figure out what exactly. I believe I'd end up with a Docker command along the lines of this (but likely simpler):



RUN 
apt-get -q update && apt-get install --no-install-recommends -y -q curl git ca-certificates apt-transport-https openssh-client &&
curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - &&
curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list &&
curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_unstable.list > /etc/apt/sources.list.d/dart_unstable.list &&
apt-get update &&
apt-get install dart=$DART_VERSION-1 &&
rm -rf /var/lib/apt/lists/*


Can anyone point me in the right direction here? How do I determine what needs to be added to /etc/apt/sources to make the texlive package show up?










share|improve this question

















This question has an open bounty worth +50
reputation from me-- ending in 3 days.


Looking for an answer drawing from credible and/or official sources.












  • 1





    What makes you think that google/dart is based on debian8? I can't find this. It seems poorly documented.

    – ctrl-alt-delor
    Mar 8 at 7:47











  • @ctrl-alt-delor this does: github.com/dart-lang/dart_docker/blob/master/base/…

    – me--
    Mar 8 at 8:55











  • I pulled google-appengine/debian8 with docker, run a terminal, did a apt search. textlive package is in the repo. Did you run apt update before calling apt-get install texlive?

    – JohnKoch
    Mar 10 at 14:09











  • Did you check your sources.list right after installation? How does it look like now? Must it be a google image or did you just choose randomly?

    – Nepumuk
    Mar 10 at 16:37













  • Do you have a line like deb http://ftp.de.debian.org/debian jessie main in your sources.list?

    – Nepumuk
    Mar 10 at 16:43














0












0








0








I'm trying to figure out how to install LaTeX (specifically, this texlive package) into Google's Debian8 Docker image, which is called gcr.io/google-appengine/debian8. I wish I could provide a link to that, but I can't find it on Docker or on GitHub. Actually, I'm using this image which derives indirectly from it.



If I try and install it into the image I get an error:



> apt-get install texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package texlive


I suspect I need to add an appropriate source (and possibly key) to the apt sources, but I have no idea how to figure out what exactly. I believe I'd end up with a Docker command along the lines of this (but likely simpler):



RUN 
apt-get -q update && apt-get install --no-install-recommends -y -q curl git ca-certificates apt-transport-https openssh-client &&
curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - &&
curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list &&
curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_unstable.list > /etc/apt/sources.list.d/dart_unstable.list &&
apt-get update &&
apt-get install dart=$DART_VERSION-1 &&
rm -rf /var/lib/apt/lists/*


Can anyone point me in the right direction here? How do I determine what needs to be added to /etc/apt/sources to make the texlive package show up?










share|improve this question
















I'm trying to figure out how to install LaTeX (specifically, this texlive package) into Google's Debian8 Docker image, which is called gcr.io/google-appengine/debian8. I wish I could provide a link to that, but I can't find it on Docker or on GitHub. Actually, I'm using this image which derives indirectly from it.



If I try and install it into the image I get an error:



> apt-get install texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package texlive


I suspect I need to add an appropriate source (and possibly key) to the apt sources, but I have no idea how to figure out what exactly. I believe I'd end up with a Docker command along the lines of this (but likely simpler):



RUN 
apt-get -q update && apt-get install --no-install-recommends -y -q curl git ca-certificates apt-transport-https openssh-client &&
curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - &&
curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list &&
curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_unstable.list > /etc/apt/sources.list.d/dart_unstable.list &&
apt-get update &&
apt-get install dart=$DART_VERSION-1 &&
rm -rf /var/lib/apt/lists/*


Can anyone point me in the right direction here? How do I determine what needs to be added to /etc/apt/sources to make the texlive package show up?







debian docker latex






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 13 mins ago









Paradox

131110




131110










asked Mar 8 at 7:20









me--me--

928




928






This question has an open bounty worth +50
reputation from me-- ending in 3 days.


Looking for an answer drawing from credible and/or official sources.








This question has an open bounty worth +50
reputation from me-- ending in 3 days.


Looking for an answer drawing from credible and/or official sources.










  • 1





    What makes you think that google/dart is based on debian8? I can't find this. It seems poorly documented.

    – ctrl-alt-delor
    Mar 8 at 7:47











  • @ctrl-alt-delor this does: github.com/dart-lang/dart_docker/blob/master/base/…

    – me--
    Mar 8 at 8:55











  • I pulled google-appengine/debian8 with docker, run a terminal, did a apt search. textlive package is in the repo. Did you run apt update before calling apt-get install texlive?

    – JohnKoch
    Mar 10 at 14:09











  • Did you check your sources.list right after installation? How does it look like now? Must it be a google image or did you just choose randomly?

    – Nepumuk
    Mar 10 at 16:37













  • Do you have a line like deb http://ftp.de.debian.org/debian jessie main in your sources.list?

    – Nepumuk
    Mar 10 at 16:43














  • 1





    What makes you think that google/dart is based on debian8? I can't find this. It seems poorly documented.

    – ctrl-alt-delor
    Mar 8 at 7:47











  • @ctrl-alt-delor this does: github.com/dart-lang/dart_docker/blob/master/base/…

    – me--
    Mar 8 at 8:55











  • I pulled google-appengine/debian8 with docker, run a terminal, did a apt search. textlive package is in the repo. Did you run apt update before calling apt-get install texlive?

    – JohnKoch
    Mar 10 at 14:09











  • Did you check your sources.list right after installation? How does it look like now? Must it be a google image or did you just choose randomly?

    – Nepumuk
    Mar 10 at 16:37













  • Do you have a line like deb http://ftp.de.debian.org/debian jessie main in your sources.list?

    – Nepumuk
    Mar 10 at 16:43








1




1





What makes you think that google/dart is based on debian8? I can't find this. It seems poorly documented.

– ctrl-alt-delor
Mar 8 at 7:47





What makes you think that google/dart is based on debian8? I can't find this. It seems poorly documented.

– ctrl-alt-delor
Mar 8 at 7:47













@ctrl-alt-delor this does: github.com/dart-lang/dart_docker/blob/master/base/…

– me--
Mar 8 at 8:55





@ctrl-alt-delor this does: github.com/dart-lang/dart_docker/blob/master/base/…

– me--
Mar 8 at 8:55













I pulled google-appengine/debian8 with docker, run a terminal, did a apt search. textlive package is in the repo. Did you run apt update before calling apt-get install texlive?

– JohnKoch
Mar 10 at 14:09





I pulled google-appengine/debian8 with docker, run a terminal, did a apt search. textlive package is in the repo. Did you run apt update before calling apt-get install texlive?

– JohnKoch
Mar 10 at 14:09













Did you check your sources.list right after installation? How does it look like now? Must it be a google image or did you just choose randomly?

– Nepumuk
Mar 10 at 16:37







Did you check your sources.list right after installation? How does it look like now? Must it be a google image or did you just choose randomly?

– Nepumuk
Mar 10 at 16:37















Do you have a line like deb http://ftp.de.debian.org/debian jessie main in your sources.list?

– Nepumuk
Mar 10 at 16:43





Do you have a line like deb http://ftp.de.debian.org/debian jessie main in your sources.list?

– Nepumuk
Mar 10 at 16:43










1 Answer
1






active

oldest

votes


















3














A example with docker on macos 10.14 , you start the image with bash .



MacBook-Pro:~ em$ docker run -it gcr.io/google-appengine/debian8 /bin/bash


You try to install textlive



root@6b616ce25c70:/# apt-get install -d  texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package texlive


The image provided by google is stripped , so many temporary files are removed .



So you must run apt-get update



root@6b616ce25c70:/# apt-get update
Ign http://httpredir.debian.org jessie InRelease
Get:1 http://httpredir.debian.org jessie-updates InRelease [145 kB]
Get:2 http://security.debian.org jessie/updates InRelease [44.9 kB]
Get:3 http://httpredir.debian.org jessie Release.gpg [2420 B]
Get:4 http://httpredir.debian.org jessie Release [148 kB]
Get:5 http://httpredir.debian.org jessie-updates/main amd64 Packages [23.0 kB]
Get:6 http://security.debian.org jessie/updates/main amd64 Packages [818 kB]
Get:7 http://httpredir.debian.org jessie/main amd64 Packages [9098 kB]
Fetched 10.3 MB in 9s (1132 kB/s)
Reading package lists... Done


Now you can run apt-get install texlive



root@6b616ce25c70:/# apt-get install -d  texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
cpp cpp-4.9 dbus file fontconfig fontconfig-config
.../...
Suggested packages:
cpp-doc gcc-4.9-locales dbus-x11 ghostscript-x apache2
../..
Recommended packages:
libarchive-tar-perl wish
The following NEW packages will be installed:
cpp cpp-4.9 dbus file fontconfig
../..
The following packages will be upgraded:
gcc-4.9-base libgcc1 libstdc++6
3 upgraded, 253 newly installed, 0 to remove and 11 not upgraded.
Need to get 441 MB of archives.
After this operation, 897 MB of additional disk space will be used.
Do you want to continue? [Y/n]





share|improve this answer
























  • Thanks so much! I'm glad it was this simple a problem, if a little embarrassed that I didn't think of that.

    – me--
    2 days ago











  • You should probably create a docker file with a run apt-get update; apt-get install -d texlive. Doing it interactively, puts it into the ephemeral layer. It will be lost when you remove the container. (Or you can do it interactively, and save the layer, but is better to automate).

    – ctrl-alt-delor
    yesterday











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f505079%2finstalling-latex-into-googles-debian8-docker-image%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














A example with docker on macos 10.14 , you start the image with bash .



MacBook-Pro:~ em$ docker run -it gcr.io/google-appengine/debian8 /bin/bash


You try to install textlive



root@6b616ce25c70:/# apt-get install -d  texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package texlive


The image provided by google is stripped , so many temporary files are removed .



So you must run apt-get update



root@6b616ce25c70:/# apt-get update
Ign http://httpredir.debian.org jessie InRelease
Get:1 http://httpredir.debian.org jessie-updates InRelease [145 kB]
Get:2 http://security.debian.org jessie/updates InRelease [44.9 kB]
Get:3 http://httpredir.debian.org jessie Release.gpg [2420 B]
Get:4 http://httpredir.debian.org jessie Release [148 kB]
Get:5 http://httpredir.debian.org jessie-updates/main amd64 Packages [23.0 kB]
Get:6 http://security.debian.org jessie/updates/main amd64 Packages [818 kB]
Get:7 http://httpredir.debian.org jessie/main amd64 Packages [9098 kB]
Fetched 10.3 MB in 9s (1132 kB/s)
Reading package lists... Done


Now you can run apt-get install texlive



root@6b616ce25c70:/# apt-get install -d  texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
cpp cpp-4.9 dbus file fontconfig fontconfig-config
.../...
Suggested packages:
cpp-doc gcc-4.9-locales dbus-x11 ghostscript-x apache2
../..
Recommended packages:
libarchive-tar-perl wish
The following NEW packages will be installed:
cpp cpp-4.9 dbus file fontconfig
../..
The following packages will be upgraded:
gcc-4.9-base libgcc1 libstdc++6
3 upgraded, 253 newly installed, 0 to remove and 11 not upgraded.
Need to get 441 MB of archives.
After this operation, 897 MB of additional disk space will be used.
Do you want to continue? [Y/n]





share|improve this answer
























  • Thanks so much! I'm glad it was this simple a problem, if a little embarrassed that I didn't think of that.

    – me--
    2 days ago











  • You should probably create a docker file with a run apt-get update; apt-get install -d texlive. Doing it interactively, puts it into the ephemeral layer. It will be lost when you remove the container. (Or you can do it interactively, and save the layer, but is better to automate).

    – ctrl-alt-delor
    yesterday
















3














A example with docker on macos 10.14 , you start the image with bash .



MacBook-Pro:~ em$ docker run -it gcr.io/google-appengine/debian8 /bin/bash


You try to install textlive



root@6b616ce25c70:/# apt-get install -d  texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package texlive


The image provided by google is stripped , so many temporary files are removed .



So you must run apt-get update



root@6b616ce25c70:/# apt-get update
Ign http://httpredir.debian.org jessie InRelease
Get:1 http://httpredir.debian.org jessie-updates InRelease [145 kB]
Get:2 http://security.debian.org jessie/updates InRelease [44.9 kB]
Get:3 http://httpredir.debian.org jessie Release.gpg [2420 B]
Get:4 http://httpredir.debian.org jessie Release [148 kB]
Get:5 http://httpredir.debian.org jessie-updates/main amd64 Packages [23.0 kB]
Get:6 http://security.debian.org jessie/updates/main amd64 Packages [818 kB]
Get:7 http://httpredir.debian.org jessie/main amd64 Packages [9098 kB]
Fetched 10.3 MB in 9s (1132 kB/s)
Reading package lists... Done


Now you can run apt-get install texlive



root@6b616ce25c70:/# apt-get install -d  texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
cpp cpp-4.9 dbus file fontconfig fontconfig-config
.../...
Suggested packages:
cpp-doc gcc-4.9-locales dbus-x11 ghostscript-x apache2
../..
Recommended packages:
libarchive-tar-perl wish
The following NEW packages will be installed:
cpp cpp-4.9 dbus file fontconfig
../..
The following packages will be upgraded:
gcc-4.9-base libgcc1 libstdc++6
3 upgraded, 253 newly installed, 0 to remove and 11 not upgraded.
Need to get 441 MB of archives.
After this operation, 897 MB of additional disk space will be used.
Do you want to continue? [Y/n]





share|improve this answer
























  • Thanks so much! I'm glad it was this simple a problem, if a little embarrassed that I didn't think of that.

    – me--
    2 days ago











  • You should probably create a docker file with a run apt-get update; apt-get install -d texlive. Doing it interactively, puts it into the ephemeral layer. It will be lost when you remove the container. (Or you can do it interactively, and save the layer, but is better to automate).

    – ctrl-alt-delor
    yesterday














3












3








3







A example with docker on macos 10.14 , you start the image with bash .



MacBook-Pro:~ em$ docker run -it gcr.io/google-appengine/debian8 /bin/bash


You try to install textlive



root@6b616ce25c70:/# apt-get install -d  texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package texlive


The image provided by google is stripped , so many temporary files are removed .



So you must run apt-get update



root@6b616ce25c70:/# apt-get update
Ign http://httpredir.debian.org jessie InRelease
Get:1 http://httpredir.debian.org jessie-updates InRelease [145 kB]
Get:2 http://security.debian.org jessie/updates InRelease [44.9 kB]
Get:3 http://httpredir.debian.org jessie Release.gpg [2420 B]
Get:4 http://httpredir.debian.org jessie Release [148 kB]
Get:5 http://httpredir.debian.org jessie-updates/main amd64 Packages [23.0 kB]
Get:6 http://security.debian.org jessie/updates/main amd64 Packages [818 kB]
Get:7 http://httpredir.debian.org jessie/main amd64 Packages [9098 kB]
Fetched 10.3 MB in 9s (1132 kB/s)
Reading package lists... Done


Now you can run apt-get install texlive



root@6b616ce25c70:/# apt-get install -d  texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
cpp cpp-4.9 dbus file fontconfig fontconfig-config
.../...
Suggested packages:
cpp-doc gcc-4.9-locales dbus-x11 ghostscript-x apache2
../..
Recommended packages:
libarchive-tar-perl wish
The following NEW packages will be installed:
cpp cpp-4.9 dbus file fontconfig
../..
The following packages will be upgraded:
gcc-4.9-base libgcc1 libstdc++6
3 upgraded, 253 newly installed, 0 to remove and 11 not upgraded.
Need to get 441 MB of archives.
After this operation, 897 MB of additional disk space will be used.
Do you want to continue? [Y/n]





share|improve this answer













A example with docker on macos 10.14 , you start the image with bash .



MacBook-Pro:~ em$ docker run -it gcr.io/google-appengine/debian8 /bin/bash


You try to install textlive



root@6b616ce25c70:/# apt-get install -d  texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package texlive


The image provided by google is stripped , so many temporary files are removed .



So you must run apt-get update



root@6b616ce25c70:/# apt-get update
Ign http://httpredir.debian.org jessie InRelease
Get:1 http://httpredir.debian.org jessie-updates InRelease [145 kB]
Get:2 http://security.debian.org jessie/updates InRelease [44.9 kB]
Get:3 http://httpredir.debian.org jessie Release.gpg [2420 B]
Get:4 http://httpredir.debian.org jessie Release [148 kB]
Get:5 http://httpredir.debian.org jessie-updates/main amd64 Packages [23.0 kB]
Get:6 http://security.debian.org jessie/updates/main amd64 Packages [818 kB]
Get:7 http://httpredir.debian.org jessie/main amd64 Packages [9098 kB]
Fetched 10.3 MB in 9s (1132 kB/s)
Reading package lists... Done


Now you can run apt-get install texlive



root@6b616ce25c70:/# apt-get install -d  texlive
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
cpp cpp-4.9 dbus file fontconfig fontconfig-config
.../...
Suggested packages:
cpp-doc gcc-4.9-locales dbus-x11 ghostscript-x apache2
../..
Recommended packages:
libarchive-tar-perl wish
The following NEW packages will be installed:
cpp cpp-4.9 dbus file fontconfig
../..
The following packages will be upgraded:
gcc-4.9-base libgcc1 libstdc++6
3 upgraded, 253 newly installed, 0 to remove and 11 not upgraded.
Need to get 441 MB of archives.
After this operation, 897 MB of additional disk space will be used.
Do you want to continue? [Y/n]






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 10 at 22:23









EchoMike444EchoMike444

7495




7495













  • Thanks so much! I'm glad it was this simple a problem, if a little embarrassed that I didn't think of that.

    – me--
    2 days ago











  • You should probably create a docker file with a run apt-get update; apt-get install -d texlive. Doing it interactively, puts it into the ephemeral layer. It will be lost when you remove the container. (Or you can do it interactively, and save the layer, but is better to automate).

    – ctrl-alt-delor
    yesterday



















  • Thanks so much! I'm glad it was this simple a problem, if a little embarrassed that I didn't think of that.

    – me--
    2 days ago











  • You should probably create a docker file with a run apt-get update; apt-get install -d texlive. Doing it interactively, puts it into the ephemeral layer. It will be lost when you remove the container. (Or you can do it interactively, and save the layer, but is better to automate).

    – ctrl-alt-delor
    yesterday

















Thanks so much! I'm glad it was this simple a problem, if a little embarrassed that I didn't think of that.

– me--
2 days ago





Thanks so much! I'm glad it was this simple a problem, if a little embarrassed that I didn't think of that.

– me--
2 days ago













You should probably create a docker file with a run apt-get update; apt-get install -d texlive. Doing it interactively, puts it into the ephemeral layer. It will be lost when you remove the container. (Or you can do it interactively, and save the layer, but is better to automate).

– ctrl-alt-delor
yesterday





You should probably create a docker file with a run apt-get update; apt-get install -d texlive. Doing it interactively, puts it into the ephemeral layer. It will be lost when you remove the container. (Or you can do it interactively, and save the layer, but is better to automate).

– ctrl-alt-delor
yesterday


















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • 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%2funix.stackexchange.com%2fquestions%2f505079%2finstalling-latex-into-googles-debian8-docker-image%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

サソリ

広島県道265号伴広島線

Accessing regular linux commands in Huawei's Dopra Linux