danielguerra69 / ubuntu-xrdp

Docker fully implemented Multi User xrdp with xorgxrdp and pulseaudio on Ubuntu 16.04/18.04
MIT License
251 stars 141 forks source link

Retain applications & updates installed during runtime #7

Closed gymnae closed 5 years ago

gymnae commented 5 years ago

Hi, this image runs very well, thank you :) Is there a way to retain applications installed over re-recreations of the container? Like installing a .deb or any package from the repo is gone when the container is re-created. Cheers,

danielguerra69 commented 5 years ago

You could use my dockerfile and add the packages you want and then rebuild it. FROM danielguerra69/ubuntu-xrdp RUN apt install mypackages

gymnae commented 5 years ago

That is a possibility, yes. Then I could also add a RUN apt-get update && apt-get upgrade in the end. Thanks.