-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: enable qemu strace when workflow is in debug mode
Signed-off-by: CrazyMax <[email protected]>
- Loading branch information
Showing
6 changed files
with
25 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
# | ||
# Dockerfile for youtube-dl | ||
# | ||
|
||
FROM python:3.9-alpine | ||
MAINTAINER kev <[email protected]> | ||
|
||
RUN set -xe \ | ||
&& apk add --no-cache ca-certificates \ | ||
ffmpeg \ | ||
openssl \ | ||
aria2 \ | ||
&& pip3 install youtube-dl | ||
RUN apk add --no-cache ca-certificates ffmpeg openssl aria2 | ||
|
||
ARG QEMU_STRACE=0 | ||
ENV QEMU_STRACE=$QEMU_STRACE | ||
RUN pip3 install youtube-dl | ||
|
||
# Try to run it so we know it works | ||
RUN youtube-dl --version | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
FROM postgis/postgis:15-master | ||
ARG QEMU_STRACE=0 | ||
ENV QEMU_STRACE=$QEMU_STRACE | ||
ENV POSTGRES_PASSWORD=password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters