You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I am using docker file to with below commands in bitbucket repo.
FROM openjdk:8-jdk-alpine
RUN addgroup -S xxxxx && adduser -S xxxxx -G xxxxx
USER xxxxx:xxxxx
ARG JAR_FILE=target/*.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar", "-Dspring.profiles.active=${ENV}","app.jar"]
Using the .yml file building the image and pushing it to ECR and ECS.
Similarly can I use the multiple docker files to create the multiple docker containers and push them to ECS containers. This all should be in the single build.