Skip to content

Commit abcc450

Browse files
committed
fix: include MANIFEST.in in Docker build for template files
The MANIFEST.in file tells setuptools to include Jinja2 templates in the package. Without it, the templates directory is not installed.
1 parent 2f4fd33 commit abcc450

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM python:alpine
33
WORKDIR /src
44

55
# Copy only the files needed for pip install
6-
COPY setup.py pyproject.toml ./
6+
COPY setup.py pyproject.toml MANIFEST.in ./
77
COPY gixy/ ./gixy/
88

99
RUN pip install --upgrade pip setuptools wheel && pip install .

0 commit comments

Comments
 (0)