Skip to content

Commit

Permalink
add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gregdenay committed Jun 4, 2024
1 parent eade3d4 commit 45e706b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM python:3.11.9-slim

LABEL authors="Gregoire Denay" \
description="Docker image to run this package"

RUN apt-get -y update

COPY requirements.txt ./

RUN pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt

COPY . .

RUN pip install taxidtools

0 comments on commit 45e706b

Please sign in to comment.