Dockerfile.min 817 Bytes
Newer Older
1
2
3
4
ARG REGISTRY=
ARG TAG=:latest
FROM ${REGISTRY}simbricks/simbricks${TAG} as builder
FROM ${REGISTRY}simbricks/simbricks-runenv${TAG}
5
6
7
8
9
10
11
12
13
14
# Add non-root user for vs code devcontainer.
ARG USERNAME=simbricks
ARG USER_UID=1000
ARG USER_GID=$USER_UID
RUN groupadd --gid $USER_GID $USERNAME \
 && useradd --uid $USER_UID --gid $USER_GID -m $USERNAME --shell /bin/bash \
# Add sudo support for this user and remove the need to type in password.
 && apt-get update \
 && apt-get install -y sudo \
 && echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
15
 && chmod 0440 /etc/sudoers.d/$USERNAME
16
COPY --chown=${USERNAME}:${USERNAME} --from=builder /simbricks /simbricks
17
WORKDIR /simbricks
18
ENV PYTHONPATH=/simbricks/experiments
19
20
RUN sudo cp docker/simbricks-run /usr/bin/ \
 && sudo chmod 755 /usr/bin/simbricks-run