Skip to content

Commit ed936ff

Browse files
committed
make docker user's home directory executable to allow running tests
1 parent 3d0c0e4 commit ed936ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/.dockerfiles/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ ARG UBUNTU_VERSION
22

33
FROM ubuntu:$UBUNTU_VERSION as base
44

5-
ENV DEBIAN_FRONTEND=noninteractive
65

76
ARG LOGIN_USER
87
ARG WORKSPACE
@@ -36,6 +35,8 @@ RUN useradd -ms /bin/bash $LOGIN_USER && \
3635
usermod -aG $worker $LOGIN_USER; \
3736
done
3837

38+
RUN chmod a+x /home/${LOGIN_USER}
39+
3940
COPY . /app
4041

4142
RUN python3.11 -m venv /markus_venv && \

0 commit comments

Comments
 (0)