switches Docker base image to 'slim-bullseye' #105

This commit is contained in:
ricardo.bartels@telekom.de
2021-10-18 22:00:53 +02:00
parent 4df4706fd0
commit e9aaebf488

View File

@@ -1,7 +1,7 @@
FROM python:3.9-alpine
FROM python:3.9-slim-bullseye
# Install dependencies
RUN apk add --no-cache build-base libffi-dev git
RUN apt-get update && apt-get upgrade && apt-get install -y git-core
# Prepare the application
COPY . /opt