Front end for starting, stopping, sending command and viewing logs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM python:3 |
|
|
|
RUN apt update && apt install -y python3-pip &&\ |
|
/usr/bin/python3 -m pip install aiohttp aiodocker docker |
|
|
|
RUN mkdir /app |
|
|
|
COPY ./public /app/public |
|
COPY ./src /app/src |
|
|
|
EXPOSE 8080 |
|
|
|
WORKDIR /app |
|
ENTRYPOINT [ "/usr/bin/python3", "/app/src/main.py" ] |