From 823abc121e59bdf191d2a4d0dc64ec196f914ca3 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sat, 22 Jun 2019 19:03:00 +0300 Subject: [PATCH] Update docker image to Alpine 3.10 and add libffi-dev --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7b1a7914..b26dec67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/alpine:3.9 +FROM docker.io/alpine:3.10 ENV UID=1337 \ GID=1337 \ @@ -14,8 +14,7 @@ RUN apk add --no-cache \ py3-sqlalchemy \ py3-markdown \ py3-psycopg2 \ - # Not yet in stable repos: - #py3-ruamel \ + py3-ruamel.yaml \ # Indirect dependencies #commonmark py3-future \ @@ -33,6 +32,7 @@ RUN apk add --no-cache \ py3-rsa \ # Other dependencies python3-dev \ + libffi-dev \ build-base \ ffmpeg \ ca-certificates \