diff --git a/Dockerfile b/Dockerfile index e534e05..bbe51b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM python:3.10-alpine3.18 AS builder +FROM python:3.13.0a4-alpine3.18 AS builder RUN apk add --no-cache cargo gcc build-base WORKDIR /app COPY requirements.txt /app/requirements.txt RUN pip install -r requirements.txt -FROM python:3.10-alpine3.18 +FROM python:3.13.0a4-alpine3.18 LABEL org.label-schema.schema-version = "1.0" LABEL org.label-schema.name = "NotifyMe"