core: add Snake using Typescript #7

Merged
Trianta merged 35 commits from snake into main 2024-11-09 01:26:09 -06:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 3641cfd836 - Show all commits

View File

@ -8,7 +8,7 @@ COPY package*.json ./
RUN npm install RUN npm install
COPY . . COPY . /usr/share/nginx/html
RUN npm run build RUN npm run build

2
Jenkinsfile vendored
View File

@ -15,7 +15,7 @@ pipeline {
} }
stage('Deploy') { stage('Deploy') {
steps { steps {
sh 'docker run -d -p 3466:80 --name test test.trianta.dev' sh 'docker run -d -p 3466:80 --name test test.trianta.dev:latest'
} }
} }
} }