-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Giovanni Stracquadanio
committed
Feb 22, 2024
1 parent
836602e
commit b2a60f4
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM ghcr.io/stracquadaniolab/code-r:4.3.2-23.12 as base_container | ||
RUN apt-get update \ | ||
&& apt-get install --yes rename procps curl \ | ||
&& apt-get autoremove \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
CMD ["/bin/bash"] | ||
|
||
## main container | ||
FROM base_container | ||
# adding opencontainer labels to link registry to github repository | ||
LABEL org.opencontainers.image.title="enzyme-screening-platform-opentrons" | ||
LABEL org.opencontainers.image.description="End-to-end eznyme screening platform for argB." | ||
LABEL org.opencontainers.image.url="https://github.com/stracquadaniolab/enzyme-screening-platform-opentrons" | ||
LABEL org.opencontainers.image.documentation="https://github.com/stracquadaniolab/enzyme-screening-platform-opentrons" | ||
LABEL org.opencontainers.image.source="https://github.com/stracquadaniolab/enzyme-screening-platform-opentrons" | ||
LABEL org.opencontainers.image.vendor="stracquadaniolab" | ||
LABEL org.opencontainers.image.authors="Martyna Kasprzyk" | ||
LABEL org.opencontainers.image.revision="v0.1.0" | ||
|
||
COPY requirements.txt requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt |