Skip to content
Open
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
2 changes: 1 addition & 1 deletion code_generator_TopCPToolkit/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.10

RUN useradd -ms /bin/bash servicex
RUN useradd -ms /bin/bash -g 0 servicex && chmod 0750 /home/servicex
RUN apt-get update && apt-get install -y netcat-traditional && rm -rf /var/lib/apt/lists/*

WORKDIR /home/servicex
Expand Down
2 changes: 1 addition & 1 deletion code_generator_funcadl_uproot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.10

RUN useradd -ms /bin/bash servicex
RUN useradd -ms /bin/bash -g 0 servicex && chmod 0750 /home/servicex

WORKDIR /home/servicex
RUN mkdir ./uproot_code_generator
Expand Down
2 changes: 1 addition & 1 deletion code_generator_funcadl_xAOD/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG APP_CONFIG_FILE="app.atlas.xaod.conf"
ENV POETRY_VERSION=2.1.1
RUN pip install poetry==$POETRY_VERSION

RUN useradd -ms /bin/bash servicex
RUN useradd -ms /bin/bash -g 0 servicex && chmod 0750 /home/servicex

WORKDIR /home/servicex
RUN mkdir ./xaod_code_generator
Expand Down
2 changes: 1 addition & 1 deletion code_generator_python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.10

RUN useradd -ms /bin/bash servicex
RUN useradd -ms /bin/bash -g 0 servicex && chmod 0750 /home/servicex

WORKDIR /home/servicex
RUN mkdir ./python_code_generator
Expand Down
2 changes: 1 addition & 1 deletion code_generator_raw_uproot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.10

RUN useradd -ms /bin/bash servicex
RUN useradd -ms /bin/bash -g 0 servicex && chmod 0750 /home/servicex
RUN apt-get update && apt-get install -y netcat-traditional && rm -rf /var/lib/apt/lists/*

WORKDIR /home/servicex
Expand Down
2 changes: 1 addition & 1 deletion servicex_app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.10

RUN useradd -ms /bin/bash servicex
RUN useradd -ms /bin/bash -g 0 servicex && chmod 0750 /home/servicex

WORKDIR /home/servicex
RUN mkdir ./servicex
Expand Down