Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
davedavemckay committed Dec 20, 2024
1 parent 09a43be commit 28b9885
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions echo-side/containers/mamba_env/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
FROM mambaorg/micromamba
FROM ubuntu

LABEL org.opencontainers.image.source https://github.com/lsst-uk/csd3-echo-somerville
LABEL org.opencontainers.image.description="Code to backup and curate LSST-UK data from CSD3 to Echo."
LABEL org.opencontainers.image.licenses="Apache-2.0"

COPY environment.yaml /environment.yaml

COPY environment.yaml /environment.yaml
USER root
RUN apt-get update && apt-get install -y git
USER mambauser
RUN micromamba --version

RUN micromamba env create --name lsst-uk --file=/environment.yaml

SHELL ["conda", "run", "-n", "lsst-uk", "/bin/bash", "-c"]
SHELL ["micromamba", "run", "-n", "lsst-uk", "/bin/bash", "-c"]

RUN git clone https://github.com/lsst-uk/csd3-echo-somerville.git

Expand Down
2 changes: 1 addition & 1 deletion environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -394,4 +394,4 @@ dependencies:
- zipp=3.17.0=pyhd8ed1ab_0
- zlib=1.2.13=hd590300_5
- zstd=1.5.5=hfc55251_0
- urllib3==2.0.7
- urllib3

0 comments on commit 28b9885

Please sign in to comment.