Microservices at Scale using AWS & Kubernetes lesson 3 Containerization of an Existing Application: Copying an Application
Copying an Application
yt link
Make sure to add the additional line to your Dockerfile before moving on!
COPY . nlib /app/
The updated Dockerfile should look like this:
FROM python:3.7.3-stretch
# Working Directory
WORKDIR /app
# Copy source code t...
philipdevblog.hashnode.dev1 min read