Skip to content

Commit d4e04b3

Browse files
ci: fix syntax in Dockerfile (#118)
ci: fix syntax in Dockerfile One cannot simply have a trailing comment after the environment variable… Related to packit/deployment#638 Reviewed-by: Laura Barcziová
2 parents c9e854e + 8eaf637 commit d4e04b3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ ENV USER=packit \
55
HOME=/home/packit \
66
# [NOTE] Fixes the issue with importing after upgrading Fedora Messaging to
77
# 3.5.0: fedora-infra/fedora-messaging#364
8-
# PYTHONPATH="/usr/local/lib/python3.9/site-packages" # CentOS Stream 9
9-
PYTHONPATH="/usr/local/lib/python3.13/site-packages" # Fedora 41
8+
# CentOS Stream 9
9+
# PYTHONPATH="/usr/local/lib/python3.9/site-packages"
10+
# Fedora 41
11+
PYTHONPATH="/usr/local/lib/python3.13/site-packages"
1012

1113
COPY files/install-deps.yaml /src/files/
1214
RUN cd /src/ \

0 commit comments

Comments
 (0)