From 8474cc7d6ec60e94755fc0577dd7432c07d92e48 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Mon, 28 Mar 2022 19:58:10 +0300 Subject: [PATCH] Copy optional-requirements.txt in standalone dockerfile --- maubot/standalone/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/maubot/standalone/Dockerfile b/maubot/standalone/Dockerfile index 612cc69..8bf06f8 100644 --- a/maubot/standalone/Dockerfile +++ b/maubot/standalone/Dockerfile @@ -20,6 +20,7 @@ RUN apk add --no-cache \ py3-unpaddedbase64 COPY requirements.txt /opt/maubot/requirements.txt +COPY optional-requirements.txt /opt/maubot/optional-requirements.txt RUN cd /opt/maubot \ && apk add --no-cache --virtual .build-deps \ python3-dev \