how to merge the previos containter in one another without creating new container code example
Example: create dockerfile
FROM ubuntu:18.04
COPY . /app
RUN make /app
CMD python /app/app.py
FROM ubuntu:18.04
COPY . /app
RUN make /app
CMD python /app/app.py