Skip to content
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
6 changes: 3 additions & 3 deletions containers/base/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ RUN mkdir -m 755 $ENTRYPOINT_DIR

# Copy the entry point script, login shim, etc
COPY entrypoint.sh /entrypoint.sh
COPY fix_user.sh $ENTRYPOINT_DIR/00_fix_user.sh
COPY login_shim.sh $ENTRYPOINT_DIR/01_login_shim.sh
COPY shell_init.sh $ENTRYPOINT_DIR/04_shell_init.sh
COPY entrypoint.d/fix_user.sh $ENTRYPOINT_DIR/10_fix_user.sh
COPY entrypoint.d/login_shim.sh $ENTRYPOINT_DIR/11_login_shim.sh
COPY entrypoint.d/shell_init.sh $ENTRYPOINT_DIR/14_shell_init.sh

# Add ~/.bashrc.d support to the user's ~/.bashrc
COPY bashrcd_fragment.bash /tmp/bashrcd_fragment.bash
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion containers/emacs/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ RUN { \
} >> $DEV_USER_HOME/.bashrc

# Copy entry point for config initialization
COPY emacs_init.sh $ENTRYPOINT_DIR/80_emacs_init.sh
COPY entrypoint.d/emacs_init.sh $ENTRYPOINT_DIR/80_emacs_init.sh

# Persistent storage for the Emacs and Doom config directories. These
# directories will be initialized with the Doom files from above.
Expand Down
2 changes: 1 addition & 1 deletion containers/ros/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RUN apt-get update \
RUN rosdep init

# Copy the ROS entry point
COPY ros_entrypoint.sh $ENTRYPOINT_DIR/20_ros_entrypoint.sh
COPY entrypoint.d/ros_entrypoint.sh $ENTRYPOINT_DIR/20_ros_entrypoint.sh

# Switch to non-root user
USER $DEV_USER
Expand Down
4 changes: 2 additions & 2 deletions containers/user/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ RUN groupmod --new-name $DEV_USER \

# We cannot update PATH in the Dockerfile (it needs to be a straight assignment,
# not using shell expansion, etc), so we must update PATH at runtime
COPY fix_path.sh $ENTRYPOINT_DIR/02_fix_path.sh
COPY entrypoint.d/fix_path.sh $ENTRYPOINT_DIR/12_fix_path.sh

# We cannot fix the volumes in the Dockerfile, because their contents are frozen
# after the VOLUME instruction, so we must update the ownership at runtime
COPY fix_volumes.sh $ENTRYPOINT_DIR/03_fix_volumes.sh
COPY entrypoint.d/fix_volumes.sh $ENTRYPOINT_DIR/13_fix_volumes.sh

# Switch to non-root user
USER $DEV_USER
Expand Down
File renamed without changes.
Loading