Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,417
Community Members
 
Community Events
184
Community Groups

File modification lost between script task and docker task

Edited

I have the following Java spec:

private Job buildAndPushImageJob(String jobName, String image, String version) {
String imageTagPin = format("%s/%s:%s-%s", AWS_ECR, image, version, "${bamboo.buildNumber}");
String imageTagLatest = format("%s/%s:%s-latest", AWS_ECR, image, version);
String imageFilePath = format("docker/%s/Dockerfile", image);

return new Job(jobName, jobName.toUpperCase())
.tasks(
gitRepositoryCheckoutTask(),
new ScriptTask().inlineBody(format("sed -i 's/CONTAINER_REGISTRY/%s/' %s", AWS_ECR, imageFilePath)),
buildDockerImage(image, Paths.get(imageFilePath), imageTagPin, imageTagLatest),
new DockerPushImageTask().customRegistryImage(imageTagPin),
new DockerPushImageTask().customRegistryImage(imageTagLatest));
}

 

As you can see I first replace some string in my `Dockerfile` and in the next task I try to build this dockerfile.
The issue is that the replacing of the file works/takes effect only in the script task but when building the docker image the modification of the `Dockerfile` seems to be lost.

So when the following task shows me that the `sed` itself did work:

new ScriptTask().inlineBody("#!/bin/sh -x\n" +
"cat " + imageFilePath + "\n" +
format("sed -i 's/CONTAINER_REGISTRY/test/' %s", imageFilePath) + "\n" +
"cat " + imageFilePath + "\n")


The job itself is not running in docker.

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events