Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #349

Merged
merged 5 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified docker/requirements.web.dev
100644 → 100755
Empty file.
21 changes: 21 additions & 0 deletions docker/web_image_history/0.3.5/Dockerfile.web
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FROM ghcr.io/davecoulter/yse_pz:0.3.4
LABEL description="Ubuntu image for YSEPZ v0.3.5"
LABEL maintainer="Dave Coulter (dcoulter@stsci.edu)"

SHELL ["/bin/bash", "-c"]

RUN apt-get update --fix-missing && \
pip install --upgrade pip

WORKDIR /app

COPY requirements/ /app/requirements/
COPY ./pip_installer.sh /app/pip_installer.sh

RUN chmod +x pip_installer.sh
RUN ./pip_installer.sh

RUN rm -rfv /app/requirements/ && rm -fv ./pip_installer.sh

RUN apt-get clean && \
rm -rf /var/lib/apt/lists/*
8 changes: 8 additions & 0 deletions docker/web_image_history/0.3.5/pip_installer.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

req_files=`ls ./requirements/*.txt | sort -V`
for req in $req_files
do
echo "Installing $req"
pip install -r $req
done
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
astro_ghost==2.0.16
astroquery==0.4.6
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tensorflow==2.13.1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
typing-extensions==4.0.1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
numpy==1.22.4