Compare commits

..

No commits in common. "10db37262c48ee130ba6ffdd5a150e67001ea9f7" and "8e626448a2079123749298e4c1e1c47ba153bf4e" have entirely different histories.

2 changed files with 0 additions and 35 deletions

View File

@ -1,15 +0,0 @@
FROM node:14-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3466
CMD ["npm", "start"]

20
Jenkinsfile vendored
View File

@ -1,20 +0,0 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build') {
steps {
script {
docker.build('test.trianta.dev:latest')
}
}
}
stage('Deploy') {
sh 'docker run -p 3466:3466 test.trianta.dev'
}
}
}