Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -1,6 +1,10 @@
|
|
1 |
FROM continuumio/miniconda3
|
2 |
|
|
|
3 |
WORKDIR /usr/src/app
|
|
|
|
|
|
|
4 |
COPY . .
|
5 |
# install dependcies
|
6 |
RUN apt-get update
|
|
|
1 |
FROM continuumio/miniconda3
|
2 |
|
3 |
+
RUN useradd -m -u 1000 user
|
4 |
WORKDIR /usr/src/app
|
5 |
+
COPY --link --chown=1000 ./ /app
|
6 |
+
|
7 |
+
|
8 |
COPY . .
|
9 |
# install dependcies
|
10 |
RUN apt-get update
|