Files
omnibot22/Dockerfile

10 lines
219 B
Docker
Raw Normal View History

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
CMD pipenv run python3 -m omnibot