aaraya commited on
Commit
f3338da
·
1 Parent(s): 4a68d84

Add dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ridgerun/rrai-synthetic-natural-dataset-generation-demo:latest
2
+
3
+ ENV TORCH_HOME=/app/.torch_cache
4
+ ENV XDG_CACHE_HOME=/app/.cache
5
+ ENV HOME=/app
6
+
7
+ USER root
8
+ RUN mkdir -p /app/.cache && chown -R 1000:1000 /app/.cache
9
+ USER 1000
10
+
11
+ CMD ["./bin/run_gui"]