specify destination

This commit is contained in:
burnettk 2022-09-20 12:06:14 -04:00
parent a0ea1de6df
commit 8cd38a3845
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ RUN pip install poetry
RUN useradd _gunicorn --no-create-home --user-group
WORKDIR /app
COPY pyproject.toml poetry.lock connectors/ /app/
ADD pyproject.toml poetry.lock /app/
ADD connectors /app/connectors
RUN poetry install
RUN set -xe \