X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=inline;f=Dockerfile;h=6a57a7ee4668ada1a75f1e31aa6ef5f4ac597e77;hb=refs%2Fchanges%2F16%2F3316%2F1;hp=d749e4fa4207c4b2714193943e342d68044ce0fd;hpb=a44e3dd81475b3bc5783a25cf3ae96a0262619e8;p=ric-plt%2Fa1.git diff --git a/Dockerfile b/Dockerfile old mode 100644 new mode 100755 index d749e4f..6a57a7e --- a/Dockerfile +++ b/Dockerfile @@ -18,8 +18,8 @@ # This container uses a 2 stage build! # Tips and tricks were learned from: https://pythonspeed.com/articles/multi-stage-docker-python/ FROM python:3.8-alpine AS compile-image -# Gevent needs gcc -RUN apk update && apk add gcc musl-dev +# Gevent needs gcc, make, file, ffi +RUN apk update && apk add gcc musl-dev make file libffi-dev # Switch to a non-root user for security reasons # This is only really needed in stage 2 however this makes the copying easier and straitforward! --user doesn't do the same thing if run as root!