mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-24 22:43:05 +00:00
This PR updates the ubuntu image for stress Dockerfile. The main purpose is to have a more updated image compared with the one that is in libpod which has not been updated in a while. Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
14 lines
369 B
Docker
14 lines
369 B
Docker
#
|
|
# Copyright (c) 2021 IBM Corp.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# The image has only the 'latest' tag so it needs to ignore DL3007
|
|
#hadolint ignore=DL3007
|
|
FROM quay.io/bedrock/ubuntu:latest
|
|
RUN apt-get -y update && \
|
|
apt-get -y upgrade && \
|
|
apt-get -y --no-install-recommends install stress && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|