diff options
Diffstat (limited to 'ci/dockerfiles/gnome-3-38-2004/Dockerfile')
-rw-r--r-- | ci/dockerfiles/gnome-3-38-2004/Dockerfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ci/dockerfiles/gnome-3-38-2004/Dockerfile b/ci/dockerfiles/gnome-3-38-2004/Dockerfile new file mode 100644 index 0000000..c1c8228 --- /dev/null +++ b/ci/dockerfiles/gnome-3-38-2004/Dockerfile @@ -0,0 +1,15 @@ +FROM docker.io/ubuntudesktop/gnome-3-38-2004:latest + +LABEL description="Bootstrap image used to build the Remmina snap with" \ + maintainer="Antenore Gatta <antenore@simbiosi.org>" \ + vendor="Remmina Project" \ + name="org.remmina.Remmina.images.gnome-3-38-2004" + +# Set noninteractive +ENV DEBIAN_FRONTEND noninteractive + +RUN \ + LC_ALL=en_US.UTF-8 apt-get -y update -qq \ + && apt install -y -qq snapcraft \ + && apt-get autoremove -y \ + && apt-get clean -y |