This repository has been archived on 2021-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
find_coach/Dockerfile.dev

7 lines
141 B
Docker

FROM node:14
WORKDIR /app
COPY npm-run-serve.sh /usr/bin/npm-run-serve.sh
RUN chmod +x /usr/bin/npm-run-serve.sh
CMD [ "npm-run-serve.sh" ]