Update Dockerfile.exporter

Change to alpine to reduce overhead
This commit is contained in:
typicalaimster 2024-07-17 15:14:32 -07:00 committed by GitHub
parent 5346333087
commit bb1d3e066e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,8 @@
FROM python
FROM python:alpine
LABEL author="Gleb Tcivie"
WORKDIR /app
RUN apk add --update --no-cache gcc libc-dev libffi-dev
COPY ../../requirements.txt .
COPY ../../.env .
RUN pip3 install -r requirements.txt