Compare commits
73 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
fa9bec5af4
|
|||
|
4521bed92d
|
|||
|
9118543a9c
|
|||
|
68f89a42a8
|
|||
|
8443f3a779
|
|||
|
c21a9a84d9
|
|||
|
77f01ae00f
|
|||
|
272046fb56
|
|||
|
587c95e246
|
|||
|
6d84a83350
|
|||
|
46bb646903
|
|||
|
86135fbcba
|
|||
|
8e900dc8c8
|
|||
|
ed50b3d219
|
|||
|
bc79a96076
|
|||
|
8c7b00f746
|
|||
|
bd7ebc9c1b
|
|||
|
120738412f
|
|||
|
a231ada791
|
|||
|
97bc55e0af
|
|||
|
e55dce9e43
|
|||
|
4232e490b7
|
|||
|
|
1aa40a6d75 | ||
|
939c70e7df
|
|||
|
d4656630db
|
|||
|
|
c58626d017 | ||
|
|
a3144ab5b7 | ||
|
|
dbcd25c55e | ||
|
|
31484e82ab | ||
|
|
8e29d340c7 | ||
|
|
10986cac4b | ||
|
|
6008b44edb | ||
|
|
e93c62f308 | ||
|
|
8518e07b8f | ||
|
|
ab5c008846 | ||
|
|
4de38b0b08 | ||
|
453e318817
|
|||
|
b2b359b63b
|
|||
|
a030476374
|
|||
|
398ed50e13
|
|||
|
4eb9a8d71d
|
|||
|
f9d2884859
|
|||
|
4a16436000
|
|||
|
c4abd19af5
|
|||
|
019e21a5c3
|
|||
|
94f4692dc8
|
|||
|
cfed0f429f
|
|||
|
626db1fa31
|
|||
|
16c7e3226c
|
|||
|
067bff735c
|
|||
|
4f701002de
|
|||
|
ab35597839
|
|||
|
d82a5ebbe5
|
|||
|
5ec58f4b11
|
|||
|
5cca0a45e6
|
|||
|
7bb5b26edd
|
|||
|
b9785f9653
|
|||
|
e50d1d78dc
|
|||
|
60b0991dd3
|
|||
|
ecb577f655
|
|||
|
d5e9587e42
|
|||
|
302f400c39
|
|||
|
a3023036f8
|
|||
|
c57953c52d
|
|||
|
ca6432bdc7
|
|||
|
213a15cb3f
|
|||
|
cb5d8ace85
|
|||
|
|
d3f391d0d3 | ||
|
|
4184035a4a | ||
|
e22f13c105
|
|||
|
a3d4d2160c
|
|||
|
71a598cabf
|
|||
|
ec41473af3
|
60
.github/workflows/codacy.yml
vendored
Normal file
60
.github/workflows/codacy.yml
vendored
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
# This workflow uses actions that are not certified by GitHub.
|
||||||
|
# They are provided by a third-party and are governed by
|
||||||
|
# separate terms of service, privacy policy, and support
|
||||||
|
# documentation.
|
||||||
|
|
||||||
|
# This workflow checks out code, performs a Codacy security scan
|
||||||
|
# and integrates the results with the
|
||||||
|
# GitHub Advanced Security code scanning feature. For more information on
|
||||||
|
# the Codacy security scan action usage and parameters, see
|
||||||
|
# https://github.com/codacy/codacy-analysis-cli-action.
|
||||||
|
# For more information on Codacy Analysis CLI in general, see
|
||||||
|
# https://github.com/codacy/codacy-analysis-cli.
|
||||||
|
|
||||||
|
name: Codacy Security Scan
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
# The branches below must be a subset of the branches above
|
||||||
|
branches: [ main ]
|
||||||
|
schedule:
|
||||||
|
- cron: '44 1 * * 2'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
codacy-security-scan:
|
||||||
|
permissions:
|
||||||
|
contents: read # for actions/checkout to fetch code
|
||||||
|
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
|
||||||
|
name: Codacy Security Scan
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
# Checkout the repository to the GitHub Actions runner
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
|
||||||
|
- name: Run Codacy Analysis CLI
|
||||||
|
uses: codacy/codacy-analysis-cli-action@db33ad5cfab49143adf0db6e890cf4bb9fb37b1c
|
||||||
|
with:
|
||||||
|
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
|
||||||
|
# You can also omit the token and run the tools that support default configurations
|
||||||
|
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
|
||||||
|
verbose: true
|
||||||
|
output: results.sarif
|
||||||
|
format: sarif
|
||||||
|
# Adjust severity of non-security issues
|
||||||
|
gh-code-scanning-compat: true
|
||||||
|
# Force 0 exit code to allow SARIF file generation
|
||||||
|
# This will handover control about PR rejection to the GitHub side
|
||||||
|
max-allowed-issues: 2147483647
|
||||||
|
|
||||||
|
# Upload the SARIF file generated in the previous step
|
||||||
|
- name: Upload SARIF results file
|
||||||
|
uses: github/codeql-action/upload-sarif@v2
|
||||||
|
with:
|
||||||
|
sarif_file: results.sarif
|
||||||
6
.github/workflows/docker-publish.yml
vendored
6
.github/workflows/docker-publish.yml
vendored
@@ -10,16 +10,16 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Set up Docker Buildx
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v2
|
||||||
-
|
-
|
||||||
name: Login to DockerHub
|
name: Login to DockerHub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_HUB_SECRET }}
|
password: ${{ secrets.DOCKER_HUB_SECRET }}
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
-
|
-
|
||||||
name: Build and Push from Makefile
|
name: Build and Push from Makefile
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
48
.github/workflows/snyk-container.yml
vendored
Normal file
48
.github/workflows/snyk-container.yml
vendored
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
# This workflow uses actions that are not certified by GitHub.
|
||||||
|
# They are provided by a third-party and are governed by
|
||||||
|
# separate terms of service, privacy policy, and support
|
||||||
|
# documentation.
|
||||||
|
|
||||||
|
# A sample workflow which checks out the code, builds a container
|
||||||
|
# image using Docker and scans that image for vulnerabilities using
|
||||||
|
# Snyk. The results are then uploaded to GitHub Security Code Scanning
|
||||||
|
#
|
||||||
|
# For more examples, including how to limit scans to only high-severity
|
||||||
|
# issues, monitor images for newly disclosed vulnerabilities in Snyk and
|
||||||
|
# fail PR checks for new vulnerabilities, see https://github.com/snyk/actions/
|
||||||
|
|
||||||
|
name: Snyk Container
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
# The branches below must be a subset of the branches above
|
||||||
|
branches: [ main ]
|
||||||
|
schedule:
|
||||||
|
- cron: '19 16 * * 0'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
snyk:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Build a Docker image
|
||||||
|
run: docker build -t your/image-to-test .
|
||||||
|
- name: Run Snyk to check Docker image for vulnerabilities
|
||||||
|
# Snyk can be used to break the build when it detects vulnerabilities.
|
||||||
|
# In this case we want to upload the issues to GitHub Code Scanning
|
||||||
|
continue-on-error: true
|
||||||
|
uses: snyk/actions/docker@806182742461562b67788a64410098c9d9b96adb
|
||||||
|
env:
|
||||||
|
# In order to use the Snyk Action you will need to have a Snyk API token.
|
||||||
|
# More details in https://github.com/snyk/actions#getting-your-snyk-token
|
||||||
|
# or you can signup for free at https://snyk.io/login
|
||||||
|
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
||||||
|
with:
|
||||||
|
image: your/image-to-test
|
||||||
|
args: --file=Dockerfile
|
||||||
|
- name: Upload result to GitHub Code Scanning
|
||||||
|
uses: github/codeql-action/upload-sarif@v2
|
||||||
|
with:
|
||||||
|
sarif_file: snyk.sarif
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -0,0 +1 @@
|
|||||||
|
.vscode/
|
||||||
108
Dockerfile
108
Dockerfile
@@ -1,103 +1,21 @@
|
|||||||
FROM cubetiq/calpine-os-linux:latest
|
FROM cubetiq/calpine-node:slim
|
||||||
LABEL maintainer="sombochea@cubetiqs.com"
|
LABEL maintainer="sombochea@cubetiqs.com"
|
||||||
|
|
||||||
# Build with root access
|
# Install PNPM
|
||||||
USER root
|
RUN npm install -g pnpm@latest
|
||||||
|
|
||||||
ENV NODE_VERSION 14.16.0
|
# Update NPM package
|
||||||
ENV USER_UID 1001
|
RUN npm install -g npm@latest
|
||||||
|
|
||||||
RUN addgroup -g ${USER_UID} node \
|
# Install yarn from npm package
|
||||||
&& adduser -u ${USER_UID} -G node -s /bin/sh -D node \
|
RUN npm install -g yarn@latest --force
|
||||||
&& apk add --no-cache \
|
|
||||||
libstdc++ \
|
|
||||||
&& apk add --no-cache --virtual .build-deps \
|
|
||||||
curl \
|
|
||||||
&& ARCH= && alpineArch="$(apk --print-arch)" \
|
|
||||||
&& case "${alpineArch##*-}" in \
|
|
||||||
x86_64) \
|
|
||||||
ARCH='x64' \
|
|
||||||
CHECKSUM="53cd618bd0cd387d79e954383d67b540ebfbefee9e261800eefff60e1bf38644" \
|
|
||||||
;; \
|
|
||||||
*) ;; \
|
|
||||||
esac \
|
|
||||||
&& if [ -n "${CHECKSUM}" ]; then \
|
|
||||||
set -eu; \
|
|
||||||
curl -fsSLO --compressed "https://unofficial-builds.nodejs.org/download/release/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz"; \
|
|
||||||
echo "$CHECKSUM node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" | sha256sum -c - \
|
|
||||||
&& tar -xJf "node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" -C /usr/local --strip-components=1 --no-same-owner \
|
|
||||||
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs; \
|
|
||||||
else \
|
|
||||||
echo "Building from source" \
|
|
||||||
# backup build
|
|
||||||
&& apk add --no-cache --virtual .build-deps-full \
|
|
||||||
binutils-gold \
|
|
||||||
g++ \
|
|
||||||
gcc \
|
|
||||||
gnupg \
|
|
||||||
libgcc \
|
|
||||||
linux-headers \
|
|
||||||
make \
|
|
||||||
python3 \
|
|
||||||
# gpg keys listed at https://github.com/nodejs/node#release-keys
|
|
||||||
&& for key in \
|
|
||||||
4ED778F539E3634C779C87C6D7062848A1AB005C \
|
|
||||||
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
|
|
||||||
74F12602B6F1C4E913FAA37AD3A89613643B6201 \
|
|
||||||
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \
|
|
||||||
8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 \
|
|
||||||
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
|
|
||||||
C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C \
|
|
||||||
DD8F2338BAE7501E3DD5AC78C273792F7D83545D \
|
|
||||||
A48C2BEE680E841632CD4E44F07496B3EB3C1762 \
|
|
||||||
108F52B48DB57BB0CC439B2997B01419BD92F80A \
|
|
||||||
B9E2F5981AA6E0CD28160D9FF13993A75599653C \
|
|
||||||
; do \
|
|
||||||
gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$key" || \
|
|
||||||
gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys "$key" || \
|
|
||||||
gpg --batch --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \
|
|
||||||
done \
|
|
||||||
&& curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.xz" \
|
|
||||||
&& curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
|
|
||||||
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
|
|
||||||
&& grep " node-v$NODE_VERSION.tar.xz\$" SHASUMS256.txt | sha256sum -c - \
|
|
||||||
&& tar -xf "node-v$NODE_VERSION.tar.xz" \
|
|
||||||
&& cd "node-v$NODE_VERSION" \
|
|
||||||
&& ./configure \
|
|
||||||
&& make -j$(getconf _NPROCESSORS_ONLN) V= \
|
|
||||||
&& make install \
|
|
||||||
&& apk del .build-deps-full \
|
|
||||||
&& cd .. \
|
|
||||||
&& rm -Rf "node-v$NODE_VERSION" \
|
|
||||||
&& rm "node-v$NODE_VERSION.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt; \
|
|
||||||
fi \
|
|
||||||
&& rm -f "node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" \
|
|
||||||
&& apk del .build-deps \
|
|
||||||
# smoke tests
|
|
||||||
&& node --version \
|
|
||||||
&& npm --version
|
|
||||||
|
|
||||||
ENV YARN_VERSION 1.22.5
|
# Checking packages version
|
||||||
|
RUN echo "NODE: $(node --version)" \
|
||||||
RUN apk add --no-cache --virtual .build-deps-yarn curl gnupg tar \
|
&& echo "NPM: $(npm --version)" \
|
||||||
&& for key in \
|
&& echo "NPX: $(npx --version)" \
|
||||||
6A010C5166006599AA17F08146C2130DFD2497F5 \
|
&& echo "YARN: $(yarn --version)" \
|
||||||
; do \
|
&& echo "PNPM: $(pnpm --version)"
|
||||||
gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$key" || \
|
|
||||||
gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys "$key" || \
|
|
||||||
gpg --batch --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \
|
|
||||||
done \
|
|
||||||
&& curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" \
|
|
||||||
&& curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc" \
|
|
||||||
&& gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz \
|
|
||||||
&& mkdir -p /opt \
|
|
||||||
&& tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ \
|
|
||||||
&& ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn \
|
|
||||||
&& ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg \
|
|
||||||
&& rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz \
|
|
||||||
&& apk del .build-deps-yarn \
|
|
||||||
# smoke test
|
|
||||||
&& yarn --version
|
|
||||||
|
|
||||||
COPY entrypoint.sh /usr/local/bin/
|
COPY entrypoint.sh /usr/local/bin/
|
||||||
|
|
||||||
|
|||||||
111
Dockerfile.16-15-0
Normal file
111
Dockerfile.16-15-0
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
FROM cubetiq/calpine-os-linux:latest
|
||||||
|
LABEL maintainer="sombochea@cubetiqs.com"
|
||||||
|
|
||||||
|
# Build with root access
|
||||||
|
USER root
|
||||||
|
|
||||||
|
ENV NODE_VERSION 16.15.0
|
||||||
|
ENV NODE_SHA256 4db62cabc0647fc18f537ed10b5573f3c23ffb4d4434e40713e7e472f1ed4e55
|
||||||
|
ENV USER_UID 1001
|
||||||
|
|
||||||
|
RUN addgroup -g ${USER_UID} node \
|
||||||
|
&& adduser -u ${USER_UID} -G node -s /bin/sh -D node \
|
||||||
|
&& apk add --no-cache \
|
||||||
|
libstdc++ \
|
||||||
|
&& apk add --no-cache --virtual .build-deps \
|
||||||
|
curl \
|
||||||
|
&& ARCH= && alpineArch="$(apk --print-arch)" \
|
||||||
|
&& case "${alpineArch##*-}" in \
|
||||||
|
x86_64) \
|
||||||
|
ARCH='x64' \
|
||||||
|
CHECKSUM=$NODE_SHA256 \
|
||||||
|
;; \
|
||||||
|
*) ;; \
|
||||||
|
esac \
|
||||||
|
&& if [ -n "${CHECKSUM}" ]; then \
|
||||||
|
set -eu; \
|
||||||
|
DL_ROOT="https://unofficial-builds.nodejs.org/download/release/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz"; \
|
||||||
|
echo "Downloading Node.js from ${DL_ROOT}"; \
|
||||||
|
curl -fsSLO --compressed $DL_ROOT; \
|
||||||
|
echo "$CHECKSUM node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" | sha256sum -c - \
|
||||||
|
&& tar -xJf "node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" -C /usr/local --strip-components=1 --no-same-owner \
|
||||||
|
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs; \
|
||||||
|
else \
|
||||||
|
echo "Building from source" \
|
||||||
|
# backup build
|
||||||
|
&& apk add --no-cache --virtual .build-deps-full \
|
||||||
|
binutils-gold \
|
||||||
|
g++ \
|
||||||
|
gcc \
|
||||||
|
gnupg \
|
||||||
|
libgcc \
|
||||||
|
linux-headers \
|
||||||
|
make \
|
||||||
|
python3 \
|
||||||
|
# gpg keys listed at https://github.com/nodejs/node#release-keys
|
||||||
|
&& for key in \
|
||||||
|
4ED778F539E3634C779C87C6D7062848A1AB005C \
|
||||||
|
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
|
||||||
|
74F12602B6F1C4E913FAA37AD3A89613643B6201 \
|
||||||
|
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \
|
||||||
|
8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 \
|
||||||
|
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
|
||||||
|
C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C \
|
||||||
|
DD8F2338BAE7501E3DD5AC78C273792F7D83545D \
|
||||||
|
A48C2BEE680E841632CD4E44F07496B3EB3C1762 \
|
||||||
|
108F52B48DB57BB0CC439B2997B01419BD92F80A \
|
||||||
|
B9E2F5981AA6E0CD28160D9FF13993A75599653C \
|
||||||
|
; do \
|
||||||
|
gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$key" || \
|
||||||
|
gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys "$key" || \
|
||||||
|
gpg --batch --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \
|
||||||
|
done \
|
||||||
|
&& curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.xz" \
|
||||||
|
&& curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
|
||||||
|
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
|
||||||
|
&& grep " node-v$NODE_VERSION.tar.xz\$" SHASUMS256.txt | sha256sum -c - \
|
||||||
|
&& tar -xf "node-v$NODE_VERSION.tar.xz" \
|
||||||
|
&& cd "node-v$NODE_VERSION" \
|
||||||
|
&& ./configure \
|
||||||
|
&& make -j$(getconf _NPROCESSORS_ONLN) V= \
|
||||||
|
&& make install \
|
||||||
|
&& apk del .build-deps-full \
|
||||||
|
&& cd .. \
|
||||||
|
&& rm -Rf "node-v$NODE_VERSION" \
|
||||||
|
&& rm "node-v$NODE_VERSION.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt; \
|
||||||
|
fi \
|
||||||
|
&& rm -f "node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" \
|
||||||
|
&& apk del .build-deps \
|
||||||
|
# smoke tests
|
||||||
|
&& node --version \
|
||||||
|
&& npm --version
|
||||||
|
|
||||||
|
ENV YARN_VERSION 1.22.18
|
||||||
|
|
||||||
|
RUN apk add --no-cache --virtual .build-deps-yarn curl gnupg tar \
|
||||||
|
&& for key in \
|
||||||
|
6A010C5166006599AA17F08146C2130DFD2497F5 \
|
||||||
|
; do \
|
||||||
|
gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$key" || \
|
||||||
|
gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys "$key" || \
|
||||||
|
gpg --batch --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \
|
||||||
|
done \
|
||||||
|
&& curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" \
|
||||||
|
&& curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc" \
|
||||||
|
&& gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz \
|
||||||
|
&& mkdir -p /opt \
|
||||||
|
&& tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ \
|
||||||
|
&& ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn \
|
||||||
|
&& ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg \
|
||||||
|
&& rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz \
|
||||||
|
&& apk del .build-deps-yarn \
|
||||||
|
# smoke test
|
||||||
|
&& yarn --version
|
||||||
|
|
||||||
|
COPY entrypoint.sh /usr/local/bin/
|
||||||
|
|
||||||
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
||||||
|
|
||||||
|
ENTRYPOINT ["entrypoint.sh"]
|
||||||
|
|
||||||
|
CMD [ "node" ]
|
||||||
12
Dockerfile.git
Normal file
12
Dockerfile.git
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
FROM cubetiq/calpine-node:latest
|
||||||
|
LABEL maintainer="sombochea@cubetiqs.com"
|
||||||
|
|
||||||
|
RUN apk update && apk add --no-cache git
|
||||||
|
|
||||||
|
COPY entrypoint.sh /usr/local/bin/
|
||||||
|
|
||||||
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
||||||
|
|
||||||
|
ENTRYPOINT ["entrypoint.sh"]
|
||||||
|
|
||||||
|
CMD [ "node" ]
|
||||||
18
Dockerfile.slim
Normal file
18
Dockerfile.slim
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
FROM node:18-alpine
|
||||||
|
LABEL maintainer="sombochea@cubetiqs.com"
|
||||||
|
|
||||||
|
# Update NPM package
|
||||||
|
RUN npm install -g npm@latest
|
||||||
|
|
||||||
|
# Checking packages version
|
||||||
|
RUN echo "NODE: $(node --version)" \
|
||||||
|
&& echo "NPM: $(npm --version)" \
|
||||||
|
&& echo "NPX: $(npx --version)"
|
||||||
|
|
||||||
|
COPY entrypoint.sh /usr/local/bin/
|
||||||
|
|
||||||
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
||||||
|
|
||||||
|
ENTRYPOINT ["entrypoint.sh"]
|
||||||
|
|
||||||
|
CMD [ "node" ]
|
||||||
38
Makefile
38
Makefile
@@ -1,10 +1,44 @@
|
|||||||
DOCKER_IMAGE=cubetiq/calpine-node:14
|
DOCKER_IMAGE=cubetiq/calpine-node
|
||||||
|
DOCKER_IMAGE_GIT=cubetiq/calpine-node-git
|
||||||
|
DOCKER_IMAGE_NAME=${DOCKER_IMAGE}:18
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
@echo 'Starting docker build with slim'
|
||||||
|
docker build -f Dockerfile.slim . -t ${DOCKER_IMAGE}:slim
|
||||||
|
|
||||||
|
@echo 'Starting docker push with slim'
|
||||||
|
docker push ${DOCKER_IMAGE}:slim
|
||||||
|
|
||||||
@echo 'Starting docker build'
|
@echo 'Starting docker build'
|
||||||
docker build . -t ${DOCKER_IMAGE}
|
docker build . -t ${DOCKER_IMAGE}
|
||||||
|
|
||||||
@echo 'Starting docker push'
|
@echo 'Starting docker push'
|
||||||
docker tag ${DOCKER_IMAGE}
|
docker tag ${DOCKER_IMAGE} ${DOCKER_IMAGE_NAME}
|
||||||
docker push ${DOCKER_IMAGE}
|
docker push ${DOCKER_IMAGE}
|
||||||
|
docker push ${DOCKER_IMAGE_NAME}
|
||||||
|
|
||||||
|
@echo 'Starting docker build with git'
|
||||||
|
docker build -f Dockerfile.git . -t ${DOCKER_IMAGE_GIT}
|
||||||
|
|
||||||
|
@echo 'Starting docker push with git'
|
||||||
|
docker push ${DOCKER_IMAGE_GIT}
|
||||||
|
|
||||||
.PHONY:build
|
.PHONY:build
|
||||||
|
|
||||||
|
test:
|
||||||
|
@echo 'Starting docker build with slim'
|
||||||
|
docker build -f Dockerfile.slim . -t ${DOCKER_IMAGE}:slim
|
||||||
|
|
||||||
|
@echo 'Starting docker build'
|
||||||
|
docker build . -t ${DOCKER_IMAGE}
|
||||||
|
|
||||||
|
@echo 'Starting docker run with slim'
|
||||||
|
docker run --rm -it ${DOCKER_IMAGE}:slim --version
|
||||||
|
|
||||||
|
@echo 'Starting docker run'
|
||||||
|
docker run --rm -it ${DOCKER_IMAGE} --version
|
||||||
|
|
||||||
|
@echo 'Starting docker run with git'
|
||||||
|
docker run --rm -it ${DOCKER_IMAGE_GIT} --version
|
||||||
|
|
||||||
|
.PHONY:test
|
||||||
21
README.md
21
README.md
@@ -1,21 +1,26 @@
|
|||||||
# CUBETIQ Alpine OS Linux with Nodejs 14
|
# CUBETIQ Alpine OS Linux with Nodejs 18
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
- CUBETIQ Alpine OS Linux (3.13.3)
|
- CUBETIQ Alpine OS Linux (Latest)
|
||||||
- Nodejs 14 (14.16.0)
|
- Nodejs 18
|
||||||
|
- PNPM 8 (8.7.5)
|
||||||
|
|
||||||
# [Docker Hub](https://hub.docker.com/r/cubetiq/calpine-node)
|
# [Docker Hub](https://hub.docker.com/r/cubetiq/calpine-node)
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker push cubetiq/calpine-node:14
|
docker push cubetiq/calpine-node:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker run --rm -it cubetiq/calpine-node:14 /bin/sh
|
docker run --rm -it cubetiq/calpine-node:latest /bin/sh
|
||||||
```
|
```
|
||||||
|
|
||||||
# Example
|
# Example
|
||||||
|
|
||||||
```Dockerfile
|
```Dockerfile
|
||||||
FROM cubetiq/calpine-node:latest
|
FROM cubetiq/calpine-node:latest
|
||||||
LABEL maintainer="sombochea@cubetiqs.com"
|
LABEL maintainer="sombochea@cubetiqs.com"
|
||||||
@@ -24,15 +29,17 @@ WORKDIR /usr/src/app
|
|||||||
|
|
||||||
COPY . /usr/src/app
|
COPY . /usr/src/app
|
||||||
|
|
||||||
RUN yarn
|
RUN pnpm install
|
||||||
|
|
||||||
CMD [ "node" , "index.js"]
|
CMD [ "node" , "index.js"]
|
||||||
```
|
```
|
||||||
|
|
||||||
# Contributors
|
# Contributors
|
||||||
- Sambo Chea <sombochea@cubetiqs.com>
|
|
||||||
|
- Sambo Chea <sombochea@cubetiqs.com>
|
||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
||||||
```text
|
```text
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,6 @@ WORKDIR /app
|
|||||||
|
|
||||||
COPY . /app
|
COPY . /app
|
||||||
|
|
||||||
RUN yarn
|
RUN pnpm install
|
||||||
|
|
||||||
CMD [ "node" , "index.js"]
|
CMD [ "node" , "index.js"]
|
||||||
@@ -5,6 +5,6 @@ WORKDIR /usr/src/app
|
|||||||
|
|
||||||
COPY . /usr/src/app
|
COPY . /usr/src/app
|
||||||
|
|
||||||
RUN yarn
|
RUN pnpm install
|
||||||
|
|
||||||
CMD [ "node" , "index.js"]
|
CMD [ "node" , "index.js"]
|
||||||
6
renovate.json
Normal file
6
renovate.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"config:base"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user