# syntax=docker/dockerfile:1 FROM python:alpine WORKDIR /app COPY requirements.txt . RUN pip3 install -r requirements.txt