Commit d2186b4e3f7deafd7c59dcaea027cdda1eff3725
1 parent
b01fbad9
Exists in
coppe
Adicionando criação de diretórios necessários caso estes não existam - Dockerfile
Showing
1 changed file
with
5 additions
and
0 deletions
Show diff stats
Dockerfile
... | ... | @@ -63,4 +63,9 @@ EXPOSE 8080 |
63 | 63 | VOLUME ["/storage"] |
64 | 64 | VOLUME ["/home/vlibras/vlibras-api/logsystem/logs"] |
65 | 65 | |
66 | +RUN mkdir -p /storage/videos/ | |
67 | +RUN mkdir -p /storage/libras/ | |
68 | +RUN mkdir -p /storage/frames/ | |
69 | +RUN mkdir -p /home/vlibras//vlibras-api/uploads/ | |
70 | + | |
66 | 71 | ENTRYPOINT ["/docker-entrypoint.sh"] | ... | ... |