2024-01-01から1年間の記事一覧
FROM python:3.9 WORKDIR /var/www COPY /requirements /var/www/requirements COPY /requirements /tmp/requirements RUN apt -y update && apt -y upgrade RUN apt -y install libopencv-dev RUN pip install --upgrade pip # API関連のライブラリインスト…