Spaces:
Running
Running
error dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -52,7 +52,7 @@ COPY --chown=user . $HOME/app
|
|
52 |
|
53 |
# Entry
|
54 |
EXPOSE 7860
|
55 |
-
CMD R -e "print(nchar(Sys.getenv('GITHUB_PAT'))); print(here::here());
|
56 |
|
57 |
|
58 |
|
|
|
52 |
|
53 |
# Entry
|
54 |
EXPOSE 7860
|
55 |
+
CMD R -e "print(nchar(Sys.getenv('GITHUB_PAT'))); print(here::here()); (tmp_file <- tempfile()); print(tmp_file); writeLines('content', tmp_file); if (file.exists(tmp_file)) {unlink(tmp_file); print('Deleted')}; options('ambiorix.dbname'=paste0(tmp_file,'.sqlite')); print(getOption('ambiorix.dbname')); source('app.R'); "
|
56 |
|
57 |
|
58 |
|