2 Commits
1.2.1 ... 1.2.3

3 changed files with 12 additions and 5 deletions

View File

@@ -31,4 +31,4 @@ jobs:
with: with:
context: . context: .
push: true push: true
tags: gitea.p-lao.com/p-lao/ubuntu-node-apps:latest tags: gitea.p-lao.com/aleleba/ubuntu-24.04-gitea-runner-worker:latest

View File

@@ -17,9 +17,16 @@ RUN apt-get update -y && \
apt-get upgrade -y && \ apt-get upgrade -y && \
apt-get install -y libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libnss3 libxss1 libasound2t64 libxtst6 xauth xvfb apt-get install -y libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libnss3 libxss1 libasound2t64 libxtst6 xauth xvfb
# Installing Node.js # Installing Node.js with nvm
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \ ENV NVM_DIR=/root/.nvm
apt-get install -y nodejs RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash && \
. "$NVM_DIR/nvm.sh" && \
nvm install 24 && \
nvm use 24 && \
nvm alias default 24 && \
ln -sf "$NVM_DIR/versions/node/$(nvm version)/bin/node" /usr/local/bin/node && \
ln -sf "$NVM_DIR/versions/node/$(nvm version)/bin/npm" /usr/local/bin/npm && \
ln -sf "$NVM_DIR/versions/node/$(nvm version)/bin/npx" /usr/local/bin/npx
# Finished installing Node.js # Finished installing Node.js
#Installing Docker #Installing Docker

View File

@@ -1,3 +1,3 @@
# Ubuntu 22.04 Gitea Runner Worker # Ubuntu 22.04 Gitea Runner Worker
## Version 1.2.1 ## Version 1.2.3