mirror of
https://github.com/casterbyte/Sara.git
synced 2025-12-27 08:49:31 +00:00
15 lines
272 B
Text
15 lines
272 B
Text
|
|
FROM python:3-alpine
|
||
|
|
|
||
|
|
RUN apk update && \
|
||
|
|
apk add --no-cache py3-colorama && \
|
||
|
|
pip install --no-cache-dir setuptools && \
|
||
|
|
rm -rf /var/cache/apk/*
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY . /app
|
||
|
|
|
||
|
|
RUN python3 setup.py install
|
||
|
|
|
||
|
|
|
||
|
|
CMD [ "sara", "--config-file", "/config/routeros.rsc" ]
|