Skip to content

Commit 11a48bc

Browse files
committed
Update the Dockerfile
Update the Dockerfile to account for changes to the package structure.
1 parent 3c05b9a commit 11a48bc

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

Dockerfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,15 @@ RUN pip install --no-cache-dir --upgrade pip setuptools wheel
66

77
COPY requirements.txt .
88

9-
RUN pip install --no-cache-dir --requirement requirements.txt
10-
11-
COPY scripts/ scripts/
12-
13-
COPY trustymail/ trustymail/
9+
COPY src/trustymail/ src/trustymail/
1410

1511
COPY README.md .
1612

1713
COPY requirements-dev.txt .
1814

1915
COPY setup.py .
2016

21-
RUN pip install --editable .
17+
RUN pip install --no-cache-dir --requirement requirements.txt
2218

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

0 commit comments

Comments
 (0)