FROM python WORKDIR /app COPY requirements.txt . RUN apk install sqlite3 RUN pip install -r requirements.txt COPY /src . CMD [ "python", "app.py" ]