Update Dockerfile

This commit is contained in:
David
2022-02-02 20:35:41 +01:00
committed by GitHub
parent 0bfd60b38d
commit 649475f35a

View File

@@ -1,12 +1,9 @@
# syntax=docker/dockerfile:1
FROM python:3.10-bullseye
FROM python:3.10-bullseye-slim
WORKDIR /app
RUN apk update && \
apk add build-base
COPY requirements.txt .
RUN pip3 install -r requirements.txt