We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2510b7b commit 431e019Copy full SHA for 431e019
.github/workflows/nextflow-app-docker.yml
@@ -7,7 +7,7 @@ on:
7
workflow_dispatch:
8
9
env:
10
- DOCKER_IMAGE: icrsc/nextflow-app
+ DOCKER_IMAGE: markisicr24/nextflow-app
11
12
jobs:
13
docker:
Dockerfile
@@ -6,6 +6,12 @@ WORKDIR /app
6
# Copy the current directory contents into the container at /app
COPY . /app
+#double make sure we explicitly copy this file
+COPY index.py ./
+COPY tabs ./tabs
+COPY pages ./pages
+COPY shared ./shared
14
+
15
16
# Install system dependencies
17
RUN apt-get update && apt-get install -y \
0 commit comments