We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d0c0e4 commit ed936ffCopy full SHA for ed936ff
server/.dockerfiles/Dockerfile
@@ -2,7 +2,6 @@ ARG UBUNTU_VERSION
2
3
FROM ubuntu:$UBUNTU_VERSION as base
4
5
-ENV DEBIAN_FRONTEND=noninteractive
6
7
ARG LOGIN_USER
8
ARG WORKSPACE
@@ -36,6 +35,8 @@ RUN useradd -ms /bin/bash $LOGIN_USER && \
36
35
usermod -aG $worker $LOGIN_USER; \
37
done
38
+RUN chmod a+x /home/${LOGIN_USER}
39
+
40
COPY . /app
41
42
RUN python3.11 -m venv /markus_venv && \
0 commit comments