-
Notifications
You must be signed in to change notification settings - Fork 1
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
sam#gemmi-win10
committed
Sep 25, 2024
1 parent
0dc05e3
commit 42f8568
Showing
4 changed files
with
29 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,8 +2,13 @@ ARG REPO= | |
ARG VER=1.36.1 | ||
FROM ${REPO}infrastlabs/x11-base:rootfs AS rootfs | ||
FROM busybox:${VER} | ||
MAINTAINER sam <[email protected]> | ||
|
||
# Set multiple labels at once, author,builtdate | ||
LABEL \ | ||
github.com.infrastlabs.docker-x11base.vendor=Infrastlabs \ | ||
github.com.infrastlabs.docker-x11base.release="production" \ | ||
github.com.infrastlabs.docker-x11base.version="1.0.1-beta" \ | ||
github.com.infrastlabs.docker-x11base.maintainer="sam <[email protected]>" \ | ||
github.com.infrastlabs.docker-x11base.builtdate="$(date -u +'%Y-%m-%d %H:%M:%S')" | ||
|
||
# # sed grep gawk bash; curl wget | ||
# RUN apk add --no-cache \ | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,13 @@ ARG VER=12 | |
FROM ${REPO}infrastlabs/x11-base:rootfs AS rootfs | ||
# ref headless//br-deb12 #29.15M @23.10.14 | ||
FROM debian:${VER}-slim | ||
# Set multiple labels at once, author,builtdate | ||
LABEL \ | ||
github.com.infrastlabs.docker-x11base.vendor=Infrastlabs \ | ||
github.com.infrastlabs.docker-x11base.release="production" \ | ||
github.com.infrastlabs.docker-x11base.version="1.0.1-beta" \ | ||
github.com.infrastlabs.docker-x11base.maintainer="sam <[email protected]>" \ | ||
github.com.infrastlabs.docker-x11base.builtdate="$(date -u +'%Y-%m-%d %H:%M:%S')" | ||
ENV \ | ||
DEBIAN_FRONTEND=noninteractive \ | ||
LOCALE_INCLUDE="zh_CN zh_HK zh_TW en en_AU fr fr_CA pt pt_BR es ar cs de it ru nl tr is sv uk ja ko th vi" | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,14 @@ FROM ${REPO}infrastlabs/x11-base:rootfs AS rootfs | |
# FROM openwrt/rootfs:armsr-armv7-openwrt-23.05 AS arm | ||
ARG TARGETARCH | ||
FROM infrastlabs/x11-base:openwrt-rootfs-${TARGETARCH} | ||
MAINTAINER sam <[email protected]> | ||
# Set multiple labels at once, author,builtdate | ||
LABEL \ | ||
github.com.infrastlabs.docker-x11base.vendor=Infrastlabs \ | ||
github.com.infrastlabs.docker-x11base.release="production" \ | ||
github.com.infrastlabs.docker-x11base.version="1.0.1-beta" \ | ||
github.com.infrastlabs.docker-x11base.maintainer="sam <[email protected]>" \ | ||
github.com.infrastlabs.docker-x11base.builtdate="$(date -u +'%Y-%m-%d %H:%M:%S')" | ||
|
||
|
||
# https://blog.csdn.net/seaneer/article/details/135011487 | ||
# https://mirror.tuna.tsinghua.edu.cn/openwrt/ | ||
|
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,6 +2,13 @@ ARG REPO= | |
ARG VER=39 | ||
FROM ${REPO}infrastlabs/x11-base:rootfs AS rootfs | ||
FROM fedora:${VER} | ||
# Set multiple labels at once, author,builtdate | ||
LABEL \ | ||
github.com.infrastlabs.docker-x11base.vendor=Infrastlabs \ | ||
github.com.infrastlabs.docker-x11base.release="production" \ | ||
github.com.infrastlabs.docker-x11base.version="1.0.1-beta" \ | ||
github.com.infrastlabs.docker-x11base.maintainer="sam <[email protected]>" \ | ||
github.com.infrastlabs.docker-x11base.builtdate="$(date -u +'%Y-%m-%d %H:%M:%S')" | ||
# su: util-linux; ping: iputils | ||
RUN \ | ||
# link yum | ||
|