-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a69a0fc
commit 4b7fffe
Showing
19 changed files
with
112 additions
and
72 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
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,4 +1,4 @@ | ||
FROM alpine:3.17 | ||
FROM alpine:3.21 | ||
|
||
RUN apk add --no-cache \ | ||
gcc \ | ||
|
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
alpine-3.21-*/ |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM alpine:3.21 | ||
|
||
RUN apk add --no-cache \ | ||
gcc \ | ||
g++ \ | ||
openssl-dev \ | ||
libxcursor-dev \ | ||
libxkbfile-dev \ | ||
libxinerama-dev \ | ||
libxv-dev \ | ||
libxdamage-dev \ | ||
libxi-dev \ | ||
libxkbcommon-dev \ | ||
cups-dev \ | ||
alsa-lib-dev \ | ||
ffmpeg-dev \ | ||
gst-plugins-base-dev \ | ||
gsm-dev \ | ||
libusb-dev \ | ||
wayland-dev |
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 |
---|---|---|
|
@@ -26,4 +26,4 @@ RUN apt-get install -y \ | |
libusb-1.0-0-dev \ | ||
libudev-dev \ | ||
libsdl2-dev \ | ||
libsdl2-ttf-dev | ||
libsdl2-ttf-dev |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
debian-12-*/ |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
FROM debian:bookworm-slim | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update -y | ||
|
||
RUN apt-get install -y \ | ||
gcc \ | ||
libssl-dev \ | ||
libpam-dev \ | ||
libkrb5-dev \ | ||
libffi-dev \ | ||
libsystemd-dev \ | ||
libx11-dev \ | ||
libxtst-dev \ | ||
libxcursor-dev \ | ||
libxrandr-dev \ | ||
libgtk2.0-dev \ | ||
libgtk-3-dev \ | ||
libglib2.0-dev \ | ||
libappindicator-dev \ | ||
libappindicator3-dev \ | ||
libnotify-dev \ | ||
libcups2-dev \ | ||
libusb-1.0-0-dev \ | ||
libudev-dev \ | ||
libsdl2-dev \ | ||
libsdl2-ttf-dev |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
**/ | ||
*.tar.* |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
ubuntu-22.04-*/ |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
FROM ubuntu:24.04 | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN sed -i 's/archive.ubuntu.com/ubuntu.mirrors.ovh.net/g' /etc/apt/sources.list | ||
RUN apt-get update -y | ||
|
||
RUN apt-get install -y \ | ||
gcc \ | ||
libssl-dev \ | ||
libpam-dev \ | ||
libkrb5-dev \ | ||
libffi-dev \ | ||
libsystemd-dev \ | ||
libx11-dev \ | ||
libxtst-dev \ | ||
libxcursor-dev \ | ||
libxrandr-dev \ | ||
libgtk2.0-dev \ | ||
libgtk-3-dev \ | ||
libglib2.0-dev \ | ||
libappindicator3-dev \ | ||
libnotify-dev \ | ||
libcups2-dev \ | ||
libusb-1.0-0-dev \ | ||
libudev-dev \ | ||
libsdl2-dev \ | ||
libsdl2-ttf-dev \ | ||
libsoup-3.0-dev \ | ||
libwebkit2gtk-4.1-dev \ | ||
libvte-2.91-dev |