Skip to content
Snippets Groups Projects

Check docker

Merged Cyril Christophe Daniel Robert Cros requested to merge check_docker into main
2 files
+ 1
2
Compare changes
  • Side-by-side
  • Inline
Files
2
image/Dockerfile 0 → 100644
+ 15
0
# Stage 1: Jbrowse config file generated
FROM quay.io/biocontainers/jbrowse2:2.10.2--h5284365_0 as jbrowse_builder
WORKDIR /app
COPY jbrowse_script.sh .
RUN ./jbrowse_script.sh
RUN rm -rf annelids/node_modules
# Stage 2: Load into nginx
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
RUN rm -rf ./*
COPY --from=jbrowse_builder /app/annelids/ .
ENTRYPOINT ["nginx", "-g", "daemon off;"]
Loading