Skip to content

Commit

Permalink
Update the Dockerfile
Browse files Browse the repository at this point in the history
Update the Dockerfile to account for changes to the package structure.
  • Loading branch information
mcdonnnj committed Jan 23, 2023
1 parent 3c05b9a commit 11a48bc
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,15 @@ RUN pip install --no-cache-dir --upgrade pip setuptools wheel

COPY requirements.txt .

RUN pip install --no-cache-dir --requirement requirements.txt

COPY scripts/ scripts/

COPY trustymail/ trustymail/
COPY src/trustymail/ src/trustymail/

COPY README.md .

COPY requirements-dev.txt .

COPY setup.py .

RUN pip install --editable .
RUN pip install --no-cache-dir --requirement requirements.txt

ENTRYPOINT ["trustymail"]
CMD ["--help"]

0 comments on commit 11a48bc

Please sign in to comment.