Trying to fix issue, updating to version 3.1.12

This commit is contained in:
Alejandro Lembke Barrientos 2024-09-10 14:46:28 -06:00
parent b676e5245c
commit 8ee5f0376f
No known key found for this signature in database
GPG Key ID: CF56F422A61141DD
2 changed files with 2 additions and 6 deletions

View File

@ -1,9 +1,5 @@
FROM ubuntu:22.04
# Configurar debconf para que use una interfaz no interactiva
ENV DEBIAN_FRONTEND=noninteractive
ENV DEBCONF_NONINTERACTIVE_SEEN=true
# Update the package list, install sudo, create a non-root user, and grant password-less sudo permissions
RUN apt update && apt install -y sudo
@ -39,7 +35,7 @@ RUN ARCH="$(dpkg --print-architecture)" \
&& sudo wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add - \
&& sudo add-apt-repository "deb [arch=${ARCH}] https://packages.microsoft.com/repos/vscode stable main" \
&& sudo apt-get update \
&& sudo apt-get install -y code
&& sudo DEBIAN_FRONTEND=noninteractive apt-get install -y code
#Making home writable
RUN sudo chmod -R a+rwX /home

View File

@ -1 +1 @@
3.1.11
3.1.12