-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Downgrade nix-channels to bullseye, remove php-related dependencies i…
…n base image Signed-off-by: Shengqi Chen <[email protected]>
- Loading branch information
1 parent
c7a7fed
commit 818c033
Showing
2 changed files
with
8 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,12 @@ FROM debian:buster | |
LABEL maintainer="Miao Wang <[email protected]>" | ||
|
||
RUN apt-get update && \ | ||
apt-get install --no-install-recommends -y wget curl rsync lftp git jq python3-dev python3-pip yum-utils createrepo aria2 ack composer php-curl php-zip libnss-unknown xz-utils patch unzip openssh-client debmirror | ||
apt-get install --no-install-recommends -y \ | ||
wget curl rsync lftp git jq python3-dev python3-pip \ | ||
yum-utils createrepo debmirror \ | ||
libnss-unknown xz-utils patch unzip \ | ||
aria2 ack openssh-client | ||
# composer php-curl php-zip | ||
|
||
RUN if [ "$(uname -m)" != "x86_64" -a "$(uname -m)" != "i386" ]; then \ | ||
apt-get install --no-install-recommends -y libxml2-dev libxslt1-dev zlib1g-dev libssl-dev libffi-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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM debian:bookworm | ||
LABEL maintainer="WANG Ruikang <[email protected]>" | ||
FROM debian:bullseye | ||
LABEL maintainer="Wang Ruikang <[email protected]>" | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y python3-dev python3-pip curl | ||
|