Merge pull request #5565 from yubiuser/update_docker

Update Dockerfile to latest alpine
This commit is contained in:
Martin Donath 2023-05-27 17:33:32 +02:00 committed by GitHub
commit 2fa92de28d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
FROM python:3.11.0-alpine3.17
FROM python:3.11-alpine3.18
# Build-time flags
ARG WITH_PLUGINS=true
@ -54,6 +54,8 @@ RUN \
gcc \
libffi-dev \
musl-dev \
&& \
pip install --no-cache-dir --upgrade pip \
&& \
pip install --no-cache-dir . \
&& \