Skip to content

Commit

Permalink
copy fence-create script
Browse files Browse the repository at this point in the history
  • Loading branch information
paulineribeyre committed Nov 17, 2021
1 parent c02b707 commit 2689718
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2

WORKDIR /$appname

# copy ONLY poetry artifact and install
# this will make sure than the dependencies is cached
COPY poetry.lock pyproject.toml /$appname/
# copy ONLY poetry artifact
# this will make sure that the dependencies are cached
COPY poetry.lock pyproject.toml bin /$appname/
# include files referred to in `tool.poetry.scripts`
COPY bin/ /$appname/bin/
# install
RUN poetry config virtualenvs.create false \
&& poetry install -vv --no-root --no-dev --no-interaction \
&& poetry show -v
Expand Down

0 comments on commit 2689718

Please sign in to comment.