blob: c1c822879411bd7f9c15b0c255f6f79ae4828905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|