Skip to content

Commit

Permalink
build(docker): upgrade base image to ubuntu:20.04 (reanahub#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonadoni committed Apr 17, 2024
1 parent 613af07 commit 5327125
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
FROM docker.io/library/python:3.6-slim
# Use Ubuntu LTS base image
FROM docker.io/library/ubuntu:20.04

# Use default answers in installation commands
ENV DEBIAN_FRONTEND=noninteractive

# Install all system dependencies in one go
# hadolint ignore=DL3008
RUN apt-get update && \
apt-get install -y \
Expand All @@ -16,4 +19,5 @@ RUN apt-get update && \
apt-get -y clean && \
rm -rf /var/lib/apt/lists/*

# Copy Kerberos configuration file
COPY krb5.conf /etc/krb5.conf

0 comments on commit 5327125

Please sign in to comment.