2022-05-30 20:17:21 -07:00
|
|
|
FROM "python:3.10-alpine"
|
|
|
|
|
STOPSIGNAL SIGINT
|
|
|
|
|
RUN mkdir /app
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
RUN pip3 install pipenv
|
|
|
|
|
RUN apk add build-base libffi-dev
|
|
|
|
|
COPY ./Pipfile ./Pipfile.lock /app/
|
|
|
|
|
RUN pipenv install
|
2024-07-18 10:57:13 -07:00
|
|
|
CMD pipenv run python3 -m omnibot
|