Tag

docker
Tired of manually deploying your AWS lambda after every change? Let’s discuss how you can offload these responsibilities to a build automation tool, like Jenkins. Jenkins is able to deploy the latest version of your lambda with just a simple click of a button. Deploying an AWS Lambda In order to deploy an AWS lambda...
Continue Reading
serverless batch
In this post, we will discuss a solution for extracting data from a warehouse and saving to a remote location. In a typical corporate IT environment, multiple applications read and manipulate the same data. With this in mind, transactional applications may need their own copy of the data. So today we will design a serverless...
Continue Reading
invalid elf header
Are you experiencing an “Invalid ELF header” error when executing your AWS Lambda? If so, you have came to the right place for help. We will discuss the root cause of this error and how to solve this issue with the help of Docker. Root cause for invalid elf header error When executed, AWS Lambdas...
Continue Reading
dockerignore file
When building docker images, it is easy to include files that aren’t necessary for your application to run successfully. Which increases our image size and can potentially cause deployment issues. In this post, we will discuss the value of the .dockerignore file and how it can be used to cleanup your docker images. What is...
Continue Reading
pyrfc dockerfile
In our previous post, we walked through how to setup a PyRFC server program.  Now we will discuss how to create a Dockerfile to containerize your program. If you aren’t familiar with Docker or Dockerfiles, we suggest reviewing this documentation. After reading this post, you should have a working Dockerfile that can be used to...
Continue Reading