Skip to content

Commit 365c280

Browse files
authored
Merge pull request #15 from JohnAmadis/copilot/update-dockerfile-to-ubuntu-22
Update base image to Ubuntu 22.04
2 parents 9d53d65 + 84d293f commit 365c280

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ ARG VERSION=latest
66
#
77
# Release image for the scripts
88
#
9-
FROM ubuntu:18.04
9+
FROM ubuntu:22.04
10+
11+
#
12+
# Disabling interactive mode
13+
#
14+
ENV DEBIAN_FRONTEND=noninteractive
1015

1116
#
1217
# Installation of wget for installation script
@@ -29,11 +34,6 @@ COPY install-choco-scripts.sh /scripts/
2934
#
3035
RUN /scripts/install-choco-scripts.sh /scripts/ $VERSION
3136

32-
#
33-
# Disabling interactive mode
34-
#
35-
ENV DEBIAN_FRONTEND=noninteractive
36-
3737
#
3838
# Some installation in the packages are interactive, so we
3939
# want to force noninteractive mode

Dockerfile.builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:22.04
22

33
RUN apt-get update
44
RUN apt-get install -y p7zip-full

0 commit comments

Comments
 (0)