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
3 changes: 3 additions & 0 deletions containers/agent/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
ARG BASE_IMAGE="scratch"
FROM $BASE_IMAGE

# Set shell to Bash with better error flags
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# Ensure root user
USER root
WORKDIR /
Expand Down
3 changes: 3 additions & 0 deletions containers/base/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

FROM ubuntu:22.04

# Set shell to Bash with better error flags
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# Ensure root user
USER root
WORKDIR /
Expand Down
5 changes: 4 additions & 1 deletion containers/cpp/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
ARG BASE_IMAGE="scratch"
FROM $BASE_IMAGE

# Set shell to Bash with better error flags
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# Ensure root user
USER root
WORKDIR /
Expand Down Expand Up @@ -103,7 +106,7 @@ RUN IWYU_TMP=$(mktemp -d) \
&& cmake --build build \
&& cmake --build build --target install \
&& cp -t /usr/local/bin iwyu_tool.py fix_includes.py \
&& cd $WORKDIR \
&& cd .. \
&& rm -rf $IWYU_TMP

# Fix the IWYU resource directory, which is a required part of installation.
Expand Down
3 changes: 3 additions & 0 deletions containers/emacs/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ FROM $EMACS_BUILDER_IMAGE AS emacs-builder
FROM $DOOM_CACHE_IMAGE AS doom-cache
FROM $BASE_IMAGE

# Set shell to Bash with better error flags
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# Ensure root user
USER root
WORKDIR /
Expand Down
3 changes: 3 additions & 0 deletions containers/emacs/doom_cache/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ ARG EMACS_BUILDER_IMAGE="scratch"
FROM $EMACS_BUILDER_IMAGE AS emacs-builder
FROM ubuntu:22.04

# Set shell to Bash with better error flags
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# Ensure root user
USER root
WORKDIR /
Expand Down
3 changes: 3 additions & 0 deletions containers/emacs/emacs_builder/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

FROM ubuntu:22.04

# Set shell to Bash with better error flags
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# Ensure root user
USER root
WORKDIR /
Expand Down
3 changes: 3 additions & 0 deletions containers/python/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
ARG BASE_IMAGE="scratch"
FROM $BASE_IMAGE

# Set shell to Bash with better error flags
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# Ensure root user
USER root
WORKDIR /
Expand Down
3 changes: 3 additions & 0 deletions containers/ros/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
ARG BASE_IMAGE="scratch"
FROM $BASE_IMAGE

# Set shell to Bash with better error flags
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# Ensure root user
USER root
WORKDIR /
Expand Down
3 changes: 3 additions & 0 deletions containers/user/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
ARG BASE_IMAGE="scratch"
FROM $BASE_IMAGE

# Set shell to Bash with better error flags
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# Ensure root user
USER root
WORKDIR /
Expand Down
3 changes: 3 additions & 0 deletions containers/xpra/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
ARG BASE_IMAGE="scratch"
FROM $BASE_IMAGE

# Set shell to Bash with better error flags
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# Ensure root user
USER root
WORKDIR /
Expand Down