-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDockerfile
47 lines (39 loc) · 1.31 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
FROM python:3.10-slim
LABEL maintainer="Ladybug Tools" email="[email protected]"
ENV WORKDIR='/home/ladybugbot'
ENV RUNDIR="${WORKDIR}/run"
ENV LIBRARYDIR="${WORKDIR}/honeybee-radiance"
ENV RAYPATH=".:${WORKDIR}/lib"
ENV BINPATH="${WORKDIR}/bin"
ENV PATH="${WORKDIR}/.local/bin:${BINPATH}:${PATH}"
RUN apt-get update \
&& apt-get -y install --no-install-recommends git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Create non-root user
RUN adduser ladybugbot --uid 1000 --disabled-password --gecos ""
USER ladybugbot
WORKDIR ${WORKDIR}
# Expects a decompressed radiance folder in the build context
COPY radiance/usr/local/radiance/bin ${BINPATH}
COPY radiance/usr/local/radiance/lib ${WORKDIR}/lib
# Install honeybee-radiance
COPY honeybee_radiance ${LIBRARYDIR}/honeybee_radiance
COPY .git ${LIBRARYDIR}/.git
COPY README.md ${LIBRARYDIR}
COPY requirements.txt ${LIBRARYDIR}
COPY setup.py ${LIBRARYDIR}
COPY setup.cfg ${LIBRARYDIR}
COPY LICENSE ${LIBRARYDIR}
# Switch user back to modify packages
USER root
RUN pip3 install --no-cache-dir setuptools wheel \
&& pip3 install --no-cache-dir ./honeybee-radiance \
&& apt-get -y --purge remove git \
&& apt-get -y clean \
&& apt-get -y autoremove \
&& rm -rf ${LIBRARYDIR}/.git
USER ladybugbot
# Set workdir
RUN mkdir -p ${RUNDIR}
WORKDIR ${RUNDIR}