This file contains hidden or 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
| name: 'Mayhem for API' | |
| on: | |
| workflow_call: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| DEFAULT_JDK_VERSION: 8 |
This file contains hidden or 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 python:3.6.7-slim-stretch | |
| WORKDIR /opt/app | |
| # Resolve dependencies | |
| COPY requirements.txt ./ | |
| RUN pip3 install --no-cache -r requirements.txt | |
| # Copy the rest of the app | |
| COPY . /opt/app |