-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker: Ninja build generator added to containers, size optimization
- Loading branch information
Showing
13 changed files
with
150 additions
and
199 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,16 +13,9 @@ | |
# docker start -ai centos-node | ||
# | ||
|
||
# https://github.com/nodejs/node/blob/master/BUILDING.md#supported-toolchains | ||
FROM local/c7-systemd | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL version="1.0" | ||
LABEL description="NodeJS RFC Connector" | ||
|
||
ARG adminuser=www-admin | ||
|
||
# nvm | ||
INCLUDE+ common/nodejs.Dockerfile | ||
|
||
USER ${adminuser} | ||
CMD ["/bin/bash"] |
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 |
---|---|---|
|
@@ -12,20 +12,9 @@ | |
# docker start -ai centos-python | ||
# | ||
|
||
# https://github.com/nodejs/node/blob/master/BUILDING.md#supported-toolchains | ||
FROM local/c7-systemd | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL version="2.0" | ||
LABEL description="Python RFC Connector" | ||
|
||
ARG adminuser=www-admin | ||
|
||
# python | ||
INCLUDE+ common/python.Dockerfile | ||
|
||
# cleanup | ||
USER root | ||
RUN rm -rf /tmp/* | ||
|
||
USER ${adminuser} | ||
CMD ["/bin/bash"] | ||
CMD ["/bin/bash"] |
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 |
---|---|---|
|
@@ -12,16 +12,9 @@ | |
# docker start -ai fedora-node | ||
# | ||
|
||
# https://github.com/nodejs/node/blob/master/BUILDING.md#supported-toolchains | ||
FROM local/fedora | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL version="2.0" | ||
LABEL description="NodeJS RFC Connector" | ||
# nodejs | ||
INCLUDE+ common/nodejs.dockerfile | ||
|
||
ARG adminuser=www-admin | ||
|
||
INCLUDE+ common/nodejs.Dockerfile | ||
|
||
USER ${adminuser} | ||
CMD ["/bin/bash"] | ||
CMD ["/bin/bash"] |
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 |
---|---|---|
|
@@ -12,20 +12,9 @@ | |
# docker start -ai fedora-python | ||
# | ||
|
||
# https://github.com/nodejs/node/blob/master/BUILDING.md#supported-toolchains | ||
FROM local/fedora | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL version="2.0" | ||
LABEL description="Python RFC Connector" | ||
|
||
ARG adminuser=www-admin | ||
|
||
# python | ||
INCLUDE+ common/python.Dockerfile | ||
|
||
# cleanup | ||
USER root | ||
RUN rm -rf /tmp/* | ||
|
||
USER ${adminuser} | ||
CMD ["/bin/bash"] |
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
Oops, something went wrong.