Commit
·
8a1aeb9
1
Parent(s):
4598cff
Trying running after copying
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -88,8 +88,9 @@ RUN --mount=target=requirements.txt,source=requirements.txt \
|
|
88 |
pip install --no-cache-dir --upgrade -r requirements.txt
|
89 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
90 |
COPY --chown=user . $HOME/app
|
91 |
-
RUN
|
92 |
-
|
|
|
93 |
|
94 |
RUN chmod +x start_server.sh
|
95 |
|
|
|
88 |
pip install --no-cache-dir --upgrade -r requirements.txt
|
89 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
90 |
COPY --chown=user . $HOME/app
|
91 |
+
RUN bash /home/user/app/on_startup_user.sh
|
92 |
+
#RUN --mount=target=/home/user/app/on_startup_user.sh,source=on_startup_user.sh,readwrite \
|
93 |
+
# bash /home/user/app/on_startup_user.sh
|
94 |
|
95 |
RUN chmod +x start_server.sh
|
96 |
|