TillCyrill
commited on
Commit
·
9e856ba
1
Parent(s):
5cb94a2
added data/
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
@@ -18,8 +18,11 @@ USER root
|
|
18 |
|
19 |
WORKDIR $HOME/app
|
20 |
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
23 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
24 |
COPY --chown=user . $HOME/app
|
25 |
|
|
|
18 |
|
19 |
WORKDIR $HOME/app
|
20 |
|
21 |
+
|
22 |
+
RUN mkdir -p /data
|
23 |
+
RUN chmod 777 /data
|
24 |
+
#RUN useradd -m -u 1000 user
|
25 |
+
#USER user
|
26 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
27 |
COPY --chown=user . $HOME/app
|
28 |
|