forked from dbekaert/RAiDER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
48 lines (36 loc) · 1.91 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
FROM condaforge/mambaforge:latest
# For opencontainers label definitions, see:
# https://github.com/opencontainers/image-spec/blob/master/annotations.md
LABEL org.opencontainers.image.title="RAiDER"
LABEL org.opencontainers.image.description="Raytracing Atmospheric Delay Estimation for RADAR"
LABEL org.opencontainers.image.authors="David Bekaert<david.bekaert@jpl.nasa.gov>, Jeremy Maurer <maurer.jeremy@gmail.com>, Simran Sangha <simran.s.sangha@jpl.nasa.gov>, Piyush Agram <piyush@descarteslabs.com>"
LABEL org.opencontainers.image.licenses="Apache-2.0"
LABEL org.opencontainers.image.url="https://github.com/dbekaert/RAiDER"
LABEL org.opencontainers.image.source="https://github.com/dbekaert/RAiDER"
LABEL org.opencontainers.image.documentation="https://github.com/dbekaert/RAiDER"
# Dynamic lables to define at build time via `docker build --label`
# LABEL org.opencontainers.image.created=""
# LABEL org.opencontainers.image.version=""
# LABEL org.opencontainers.image.revision=""
ARG DEBIAN_FRONTEND=noninteractive
ENV PYTHONDONTWRITEBYTECODE=true
RUN apt-get update && apt-get install -y --no-install-recommends git unzip vim && \
apt-get clean && rm -rf /var/lib/apt/lists/*
# Create non-root user/group with default inputs
ARG CONDA_UID=1000
ARG CONDA_GID=1000
RUN groupadd -g "${CONDA_GID}" --system raider && \
useradd -l -u "${CONDA_UID}" -g "${CONDA_GID}" --system -d /home/raider -m -s /bin/bash raider && \
chown -R raider:raider /opt
USER ${CONDA_UID}
WORKDIR /home/raider
SHELL ["/bin/bash", "-l", "-c"]
COPY --chown=${CONDA_UID}:${CONDA_GID} . /RAiDER/
RUN mamba env create -f /RAiDER/environment.yml && \
conda clean -afy
# Ensure that environment is activated on startup
RUN echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.profile && \
echo "conda activate RAiDER" >> ~/.profile
RUN python -m pip install --no-cache-dir /RAiDER/
ENTRYPOINT ["/RAiDER/tools/RAiDER/etc/entrypoint.sh"]
CMD ["--help"]