Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit dc88791

Browse files
authored
Merge pull request #3 from yogstation13/alexkar598-patch-1
xz replays
2 parents 2d4217f + 6069338 commit dc88791

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
FROM alpine:3.12.0
1+
FROM alpine:3.16.0
2+
3+
RUN apk add --no-cache xz
24

35
COPY ./condense.sh .
46

57
RUN chmod +x ./condense.sh
68

7-
ENTRYPOINT ["./condense.sh"]
9+
ENTRYPOINT ["./condense.sh"]

condense.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ DEMO_FILES=$(find $DEMO_PATH -mmin +$DEMO_MINIMUM_MINUTES -name $DEMO_PATTERN)
99
for DEMO_FILE in $DEMO_FILES
1010
do
1111
echo "Compressing demo file: ${DEMO_FILE}"
12-
gzip $DEMO_FILE
13-
done
12+
#Compress Test Level9 Threads1
13+
xz -zt9 -T1 $DEMO_FILE
14+
done

0 commit comments

Comments
 (0)