I have a Dockerfile for dockerizing a Node.js app:
FROM node:carbon
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
COPY package*.json ./
RUN npm install
# Bundle app source
COPY . .
EXPOSE 80
CMD ["npm","start"]
But I also need to make Python 3 available. As I understand, multiple FROM statements in a Dockerfile will not work, as it only takes the most recent FROM. How can I make both Python3 and Node available inside the same container?