Skip to content

Commit c35ad9e

Browse files
committed
Fixed dockerfile for the GitHub action.
- curl from backports
1 parent 914d8da commit c35ad9e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ LABEL AUTHOR Salvador E. Tropea <set@ieee.org>
33
LABEL Description="export various files from KiCad projects"
44

55
RUN apt-get update && \
6-
apt-get -y install make wget curl && \
6+
apt-get -y install -t bullseye-backports curl && \
7+
apt-get -y install make wget && \
78
curl -s https://api.github.com/repos/INTI-CMNB/kicad-git-filters/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \
89
apt -y install --no-install-recommends ./*.deb && \
910
apt-get -y remove curl wget && \

0 commit comments

Comments
 (0)