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.
7 lines
362 B
7 lines
362 B
FROM python:3.10
|
|
RUN python -m pip install aiodocker aiohttp && mkdir /app
|
|
RUN cd /tmp && git clone https://git.pblr-nyk.pro/gsd/Facti13.Web.Backend.Java.V2 && cd ./Facti13.Web.Backend.Java.V2/ext/python-docker-client && cp *.* /app && rm -r /tmp/Facti13.Web.Backend.Java.V2
|
|
WORKDIR /app
|
|
COPY ./ ./
|
|
ENV PYTHONUNBUFFERED 1
|
|
ENTRYPOINT ["python", "dockerclient.py"]
|