add output directory

This commit is contained in:
Brian Gough
2020-12-15 14:59:05 +00:00
parent bdbfe70086
commit 692dbc8d6b
5 changed files with 47 additions and 12 deletions

View File

@@ -22,7 +22,7 @@ COPY . /app
FROM base
COPY --from=app /app /app
RUN mkdir -p cache compiles db \
&& chown node:node cache compiles db
RUN mkdir -p cache compiles db output \
&& chown node:node cache compiles db output
CMD ["node", "--expose-gc", "app.js"]