mirror of
https://github.com/casterbyte/Sara.git
synced 2025-12-23 23:09:30 +00:00
15 lines
No EOL
272 B
Docker
15 lines
No EOL
272 B
Docker
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" ] |