Skip to content

Commit 3fb7470

Browse files
committed
fix
1 parent 1ef107a commit 3fb7470

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ RUN export BUILD=$(if [ "$TARGETPLATFORM" = "linux/amd64" ] ; then echo "amd64";
88
apt-get update -y && apt-get install -y \
99
libjpeg-dev \
1010
imagemagick \
11-
python3 \
1211
python3-venv \
13-
python3-dev \
12+
python3 \
1413
xz-utils \
1514
$buildDeps \
1615
--no-install-recommends --force-yes && \
@@ -23,5 +22,5 @@ RUN export BUILD=$(if [ "$TARGETPLATFORM" = "linux/amd64" ] ; then echo "amd64";
2322
rm ffmpeg-5.1.1-$BUILD-static.tar.xz && \
2423
apt-get purge -y --auto-remove $buildDeps
2524

26-
# Set the virtual environment as the default Python environment
27-
ENV PATH="/opt/venv/bin:$PATH"
25+
ENV PATH="/opt/venv/bin:${PATH}"
26+
CMD [ "python3", "--version" ]

0 commit comments

Comments
 (0)