Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -32,6 +32,9 @@ WORKDIR $HOME/app
|
|
32 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
33 |
COPY --chown=user . $HOME/app
|
34 |
|
|
|
|
|
|
|
35 |
RUN echo "Hello from Dockerfile!"
|
36 |
|
37 |
CMD ["python3", "app.py"]
|
|
|
32 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
33 |
COPY --chown=user . $HOME/app
|
34 |
|
35 |
+
RUN chmod g=u /etc/passwd /etc/group
|
36 |
+
|
37 |
+
|
38 |
RUN echo "Hello from Dockerfile!"
|
39 |
|
40 |
CMD ["python3", "app.py"]
|