Ajuste libreria libasound2
This commit is contained in:
parent
4b13923cc7
commit
d0069e9204
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ FROM debian:bullseye-slim
|
||||||
MAINTAINER Luis GL <luisgulo@gmail.com>
|
MAINTAINER Luis GL <luisgulo@gmail.com>
|
||||||
# Todo actualizado
|
# Todo actualizado
|
||||||
RUN apt -y update; apt -y upgrade
|
RUN apt -y update; apt -y upgrade
|
||||||
RUN apt -y install apt-transport-https wget gpg locales libgtk-3-0 libx11-xcb1 libdbus-glib-1-2 libxt6
|
RUN apt -y install apt-transport-https wget gpg locales libgtk-3-0 libx11-xcb1 libdbus-glib-1-2 libxt6 libasound2
|
||||||
# Locales para es_ES
|
# Locales para es_ES
|
||||||
RUN sed -i '/es_ES.UTF-8/s/^# //g' /etc/locale.gen && \
|
RUN sed -i '/es_ES.UTF-8/s/^# //g' /etc/locale.gen && \
|
||||||
locale-gen
|
locale-gen
|
||||||
|
@ -14,7 +14,7 @@ ENV LC_ALL es_ES.UTF-8
|
||||||
# Repositorio SoloConLinux
|
# Repositorio SoloConLinux
|
||||||
RUN wget https://repositorio.soloconlinux.org.es/soloconlinux.list -O /etc/apt/sources.list.d/soloconlinux.list
|
RUN wget https://repositorio.soloconlinux.org.es/soloconlinux.list -O /etc/apt/sources.list.d/soloconlinux.list
|
||||||
# Clave GPG SoloConLinux
|
# Clave GPG SoloConLinux
|
||||||
RUN wget -qO - https://repositorio.soloconlinux.org.es/repo-gpg.key -O /usr/share/keyrings/repositorio-archive-keyring.gpg
|
RUN wget -qO - https://repositorio.soloconlinux.org.es/repo-gpg.key -O /etc/apt/repo-gpg.key
|
||||||
RUN apt -y update; apt -y install firefox; apt-get clean
|
RUN apt -y update; apt -y install firefox; apt-get clean
|
||||||
RUN GID=1000; UID=1000; UNAME=anonimo; mkdir -p /home/$UNAME; echo "$UNAME:x:${UID}:${GID}:Developer,,,:/home/$UNAME:/bin/bash" >> /etc/passwd; echo "$UNAME:x:${UID}:" >> /etc/group; chown ${UID}:${GID} -R /home/$UNAME
|
RUN GID=1000; UID=1000; UNAME=anonimo; mkdir -p /home/$UNAME; echo "$UNAME:x:${UID}:${GID}:Developer,,,:/home/$UNAME:/bin/bash" >> /etc/passwd; echo "$UNAME:x:${UID}:" >> /etc/group; chown ${UID}:${GID} -R /home/$UNAME
|
||||||
USER anonimo
|
USER anonimo
|
||||||
|
|
Loading…
Reference in a new issue