Skip to content

Commit 58342b8

Browse files
committed
fix: include VERSION file in Docker build
Docker build failed because pyproject.toml requires a VERSION file that was not copied into the build context.
1 parent e3c4115 commit 58342b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.12-slim AS builder
22

33
WORKDIR /build
4-
COPY pyproject.toml ./
4+
COPY pyproject.toml VERSION ./
55
RUN pip install --no-cache-dir build
66

77
COPY src/ src/

0 commit comments

Comments
 (0)