Skip to content

Commit

Permalink
Added upgrading of packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Jul 19, 2024
1 parent 85468cd commit 473c54a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ RUN curl -L -o "/tmp/kcov.tar.gz" "https://github.com/SimonKagstrom/kcov/archive

FROM php:8.3-cli-bookworm

# Upgrade all installed packages and clean up.
# hadolint ignore=DL3005
RUN apt-get update -qq \
&& apt-get dist-upgrade -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

LABEL org.opencontainers.image.authors="Alex Skrypnyk <[email protected]>" maintainer="Alex Skrypnyk <[email protected]>"

# Ensure temporary files are not retained in the image.
Expand Down

0 comments on commit 473c54a

Please sign in to comment.