1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-09 12:35:18 +02:00

Small changes to CSS. README.md with screenshots

This commit is contained in:
unknown 2021-06-08 12:51:50 +02:00
parent 1636b705de
commit 22920f2660
16 changed files with 70 additions and 40 deletions

View file

@ -8,10 +8,15 @@ RUN npm install --only=production
COPY . .
RUN mkdir -p ./public ./data
RUN mv ./client/build/* ./public
RUN rm -rf ./client
RUN mkdir -p ./public ./data \
&& cd ./client \
&& npm run build \
&& cd .. \
&& mv ./client/build/* ./public \
&& rm -rf ./client
EXPOSE 5005
ENV NODE_ENV=production
CMD ["node", "server.js"]