Permalink
Cannot retrieve contributors at this time
16 lines (10 sloc)
237 Bytes
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ruby:3.1.2 | |
| WORKDIR /app | |
| COPY . . | |
| RUN useradd --create-home strap | |
| USER strap | |
| RUN script/bootstrap | |
| HEALTHCHECK --interval=5m --timeout=3s \ | |
| CMD curl -f http://localhost:5000/ || exit 1 | |
| EXPOSE 5000 | |
| ENTRYPOINT ["script/server"] |