Initial Commit
gitea_dndsources/schedulord-discordbot/pipeline/head There was a failure building this commit Details

This commit is contained in:
Jesse James Isler 2022-06-08 16:04:45 +02:00
commit 9e2f577c1e
2 changed files with 18 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
# syntax=docker/dockerfile:1
FROM node:12-alpine
RUN apk add --no-cache python2 g++ make
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
sh 'node --version'
sh 'svn --version'
}
}
}
}