We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef107a commit 3fb7470Copy full SHA for 3fb7470
Dockerfile
@@ -8,9 +8,8 @@ RUN export BUILD=$(if [ "$TARGETPLATFORM" = "linux/amd64" ] ; then echo "amd64";
8
apt-get update -y && apt-get install -y \
9
libjpeg-dev \
10
imagemagick \
11
- python3 \
12
python3-venv \
13
- python3-dev \
+ python3 \
14
xz-utils \
15
$buildDeps \
16
--no-install-recommends --force-yes && \
@@ -23,5 +22,5 @@ RUN export BUILD=$(if [ "$TARGETPLATFORM" = "linux/amd64" ] ; then echo "amd64";
23
22
rm ffmpeg-5.1.1-$BUILD-static.tar.xz && \
24
apt-get purge -y --auto-remove $buildDeps
25
26
-# Set the virtual environment as the default Python environment
27
-ENV PATH="/opt/venv/bin:$PATH"
+ENV PATH="/opt/venv/bin:${PATH}"
+CMD [ "python3", "--version" ]
0 commit comments