Skip to content

Commit

Permalink
switch to Ubuntu 22.04 + update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
xpillons committed May 21, 2024
1 parent 15029f2 commit bc0230c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion toolset/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04
FROM ubuntu:22.04

# Arguments set during docker-compose build -b --build from .env file

Expand All @@ -20,6 +20,11 @@ RUN echo "APT::Get::Assume-Yes \"true\";" > /etc/apt/apt.conf.d/90assumeyes && \
apt install -y wget openssh-client sudo && \
chmod +x /tmp/install.sh && \
/tmp/install.sh && \
apt-get update && \
apt-get upgrade -y && \
apt-get full-upgrade -y && \
apt-get autoremove -y && \
apt-get autoclean -y && \
#
echo "Creating ${USERNAME} user..." && \
useradd --uid $USER_UID -m ${USERNAME} && \
Expand Down

0 comments on commit bc0230c

Please sign in to comment.