-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
6933742
commit 2b9cd2d
Showing
5 changed files
with
22 additions
and
28 deletions.
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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
# FROM ubuntu:22.04 | ||
FROM continuumio/miniconda3:latest | ||
|
||
LABEL org.opencontainers.image.title="bio-check-base" \ | ||
LABEL org.opencontainers.image.title="bio-compose-server-base" \ | ||
org.opencontainers.image.description="Base Docker image for BioCompose REST API management, job processing, and datastorage with MongoDB, ensuring scalable and robust performance." \ | ||
org.opencontainers.image.url="https://biosimulators.org/" \ | ||
org.opencontainers.image.source="https://github.com/biosimulators/bio-check" \ | ||
org.opencontainers.image.authors="Alexander Patrie <[email protected]>, BioSimulators Team <[email protected]>" \ | ||
org.opencontainers.image.vendor="BioSimulators Team" | ||
|
||
# SHELL ["/bin/bash", "-c"] | ||
SHELL ["/usr/bin/env", "bash", "-c"] | ||
|
||
# shared env | ||
|
@@ -32,7 +31,10 @@ RUN mkdir -p /Pysces \ | |
&& mkdir -p /root/Pysces \ | ||
&& mkdir -p /root/Pysces/psc \ | ||
&& conda env create -n server -f environment.base.yml -y \ | ||
&& echo "conda activate server" >> ~/.bashrc | ||
&& echo "conda activate server" >> ~/.bashrc \ | ||
&& source ~/.bashrc \ | ||
&& conda env export --no-builds > config/environment.base.lock.yml \ | ||
&& rm -f environment.base.yml | ||
|
||
|
||
# # create conda env from yml and ensure env activation | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.0.4-test | ||
0.0.5-test |
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