Skip to content

Instantly share code, notes, and snippets.

View swarkentin's full-sized avatar
:bowtie:

Sheldon Warkentin swarkentin

:bowtie:
View GitHub Profile
@swarkentin
swarkentin / gist:3eb7c60265a95456c895f474fbfb3b51
Created April 4, 2023 16:22
apache openmeetings integrate Mayhem for API
name: 'Mayhem for API'
on:
workflow_call:
push:
pull_request:
workflow_dispatch:
env:
DEFAULT_JDK_VERSION: 8
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