mirror of
https://github.com/caronc/apprise.git
synced 2025-01-05 21:49:02 +01:00
Clean up apt lists after installation in Dockerfile (#940)
This commit is contained in:
parent
f84d604a22
commit
b34654bc3f
@ -33,7 +33,8 @@
|
||||
# Base
|
||||
FROM python:3.10-buster
|
||||
RUN apt-get update && \
|
||||
apt-get install -y libdbus-1-dev libgirepository1.0-dev build-essential musl-dev bash
|
||||
apt-get install -y libdbus-1-dev libgirepository1.0-dev build-essential musl-dev bash && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
RUN pip install --no-cache-dir dbus-python PyGObject
|
||||
|
||||
# Apprise Setup
|
||||
|
@ -33,7 +33,8 @@
|
||||
# Base
|
||||
FROM python:3.11-buster
|
||||
RUN apt-get update && \
|
||||
apt-get install -y libdbus-1-dev libgirepository1.0-dev build-essential musl-dev bash
|
||||
apt-get install -y libdbus-1-dev libgirepository1.0-dev build-essential musl-dev bash && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
RUN pip install --no-cache-dir dbus-python PyGObject
|
||||
|
||||
# Apprise Setup
|
||||
|
@ -33,7 +33,8 @@
|
||||
# Base
|
||||
FROM python:3.6-buster
|
||||
RUN apt-get update && \
|
||||
apt-get install -y libdbus-1-dev libgirepository1.0-dev build-essential musl-dev bash
|
||||
apt-get install -y libdbus-1-dev libgirepository1.0-dev build-essential musl-dev bash && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
RUN pip install --no-cache-dir dbus-python PyGObject
|
||||
|
||||
# Apprise Setup
|
||||
|
Loading…
Reference in New Issue
Block a user