I want to reduce cost by launching jenkins within other container but jenkins is not launching along with other container
FROM ubuntu:20.04
FROM jenkins/jenkins:lts
USER root
FROM python:3.10
...................
...................
...................
ENTRYPOINT [ "python", "./automatic_trigger/script.py" ]
I have used following command to launch the container
docker build -t trigger -p 8080:8080 .