Skip to content

Commit 7003655

Browse files
committed
updating to account for breaking change in pixi clean cache cli
1 parent 1fe92c9 commit 7003655

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN cd $HOME && PIXI_ARCH=x86_64 curl -fsSL https://pixi.sh/install.sh | bash
5656
ENV PATH=$PATH:$HOME/.pixi/bin
5757

5858
# 4) install everything else with pixi
59-
RUN cd $HOME && pixi clean cache --yes && pixi install --verbose --color=always --frozen && pixi clean cache --yes
59+
RUN cd $HOME && pixi install --verbose --color=always --frozen && pixi clean cache --assume-yes
6060

6161
# 5) modify the shell config so that each container launches within the pixi env
6262
RUN echo "export PATH=$PATH:$HOME/.pixi/envs/default/bin" >> $HOME/.bashrc

justfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ setup-env:
4242

4343
# Build the Docker image for the pipeline locally.
4444
docker-build:
45-
docker build -t nrminor/dorado-and-friends:v0.2.2 .
45+
docker build -t nrminor/dorado-and-friends:v0.2.3 .
4646

4747
# Push the docker image to Docker Hub (requires N.R. Minor's login credentials).
4848
docker-push:
49-
docker push nrminor/dorado-and-friends:v0.2.2
49+
docker push nrminor/dorado-and-friends:v0.2.3
5050

5151
# Run both docker recipes in sequence
5252
docker: docker-build docker-push

nextflow.config

+4-4
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ profiles {
200200
singularity.enabled = false
201201
conda.enabled = false
202202

203-
process.container = "nrminor/dorado-and-friends:v0.2.2"
203+
process.container = "nrminor/dorado-and-friends:v0.2.3"
204204

205205
}
206206

@@ -210,7 +210,7 @@ profiles {
210210
singularity.enabled = false
211211
conda.enabled = false
212212

213-
process.container = "nrminor/dorado-and-friends:v0.2.2"
213+
process.container = "nrminor/dorado-and-friends:v0.2.3"
214214

215215
}
216216

@@ -220,7 +220,7 @@ profiles {
220220
docker.enabled = false
221221
conda.enabled = false
222222

223-
process.container = "docker://nrminor/dorado-and-friends:v0.2.2"
223+
process.container = "docker://nrminor/dorado-and-friends:v0.2.3"
224224

225225
}
226226

@@ -230,7 +230,7 @@ profiles {
230230
docker.enabled = false
231231
conda.enabled = false
232232

233-
process.container = "docker://nrminor/dorado-and-friends:v0.2.2"
233+
process.container = "docker://nrminor/dorado-and-friends:v0.2.3"
234234

235235
}
236236

0 commit comments

Comments
 (0)