Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
windWingWalker committed Jul 29, 2022
1 parent ed0e22a commit 2befee8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion microservices/calculate-gathering-fee/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM public.ecr.aws/lambda/python:3.8

# Copy function code
WORKDIR ${LAMBDA_TASK_ROOT}
COPY model/ /lib/model/
COPY src/ .
COPY ../../model/ /lib/model/
COPY requirements.txt .
RUN pip3 install -r requirements.txt --target "${LAMBDA_TASK_ROOT}"

Expand Down
5 changes: 5 additions & 0 deletions microservices/calculate-gathering-fee/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ pipeline{
ansiColor('xterm')
}
stages{
stage('Gather Files'){
steps{
sh "mv model/ microservices/${TF_VAR_ms_name}/"
}
}
stage('Build Image'){
steps{
sh 'ls -al'
Expand Down

0 comments on commit 2befee8

Please sign in to comment.