Skip to content
Snippets Groups Projects

Add Dockerfile

Merged Larissa Glass requested to merge 7-containerize into main
1 file
+ 11
0
Compare changes
  • Side-by-side
  • Inline
Dockerfile 0 → 100644
+ 11
0
FROM python:3-slim
WORKDIR /usr/src/app
COPY README.md requirements.txt pyproject.toml ./
ADD tsg ./tsg
ADD data ./data
RUN pip install .
CMD [ "transcript-generator", "--transcripts", "data/transcripts_short.csv", "--annotation", "data/Homo_sapiens.GRCh38.103.chr.gtf", "--prob_inclusion", "0.05" ]
\ No newline at end of file
Loading