Update Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
@@ -1,5 +1,10 @@
|
|
1 |
FROM pytorch/pytorch:2.3.0-cuda12.1-cudnn8-runtime
|
2 |
|
|
|
|
|
|
|
|
|
|
|
3 |
WORKDIR /usr/src/app
|
4 |
|
5 |
RUN apt-get update
|
|
|
1 |
FROM pytorch/pytorch:2.3.0-cuda12.1-cudnn8-runtime
|
2 |
|
3 |
+
RUN useradd -m -s /bin/bash xyz
|
4 |
+
RUN mkdir -p /usr/src/app/
|
5 |
+
RUN chown -R xyz:xyz /usr/src/app/
|
6 |
+
|
7 |
+
|
8 |
WORKDIR /usr/src/app
|
9 |
|
10 |
RUN apt-get update
|