mirror of
https://github.com/nicolargo/glances.git
synced 2025-01-03 15:15:02 +03:00
Force image update
This commit is contained in:
parent
4bbb729d48
commit
573d73f198
@ -17,6 +17,11 @@ ARG PYTHON_VERSION=3.11
|
||||
# Base layer to be used for building dependencies and the release images
|
||||
FROM alpine:${IMAGE_VERSION} as base
|
||||
|
||||
# Upgrade the system
|
||||
RUN apk update \
|
||||
&& apk upgrade --no-cache
|
||||
|
||||
# Install the minimal set of packages
|
||||
RUN apk add --no-cache \
|
||||
python3 \
|
||||
curl \
|
||||
|
@ -36,17 +36,21 @@ FROM base as build
|
||||
ARG PYTHON_VERSION
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# Install build-time dependencies
|
||||
# Upgrade the system
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
&& apt-get upgrade -y
|
||||
|
||||
# Install build-time dependencies
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
python3-dev \
|
||||
python3-venv \
|
||||
python3-pip \
|
||||
python3-wheel \
|
||||
libzmq5 \
|
||||
musl-dev \
|
||||
build-essential \
|
||||
&& apt-get clean \
|
||||
build-essential
|
||||
|
||||
RUN apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN python${PYTHON_VERSION} -m venv --without-pip venv
|
||||
|
Loading…
Reference in New Issue
Block a user