Add push trigger to weekly Docker build workflow
All checks were successful
Weekly Docker Build / build (arm64) (push) Successful in 11s
Weekly Docker Build / build (amd64) (push) Successful in 26s
Weekly Docker Build / amend-manifest (push) Successful in 6s

Remove redundant COPY command from Dockerfile
This commit is contained in:
thuanle
2025-07-11 12:16:18 +07:00
parent 5174e4f78b
commit e34337e6cc
2 changed files with 1 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
name: Weekly Docker Build
on:
push:
schedule:
- cron: '0 0 * * 0' # 00:00 sáng Chủ nhật hằng tuần (UTC)
workflow_dispatch: # Cho phép chạy tay nếu cần

View File

@@ -2,6 +2,4 @@ FROM alpine:latest
RUN apk add --no-cache privoxy
COPY config /etc/privoxy/config
CMD ["privoxy", "--no-daemon", "/etc/privoxy/config"]