Files
omnibot22/Dockerfile
Alek Ratzloff f700c0f34c Add config.toml as a mapped file instead of copying
This should reduce the number of rebuilds that we have to do for a
simple configuration change

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2024-07-18 10:57:13 -07:00

10 lines
219 B
Docker

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