12 lines
248 B
Docker
12 lines
248 B
Docker
|
FROM python:3.9
|
||
|
|
||
|
ADD requirements.txt requirements.txt
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
ADD single_ursim_control /single_ursim_control/
|
||
|
WORKDIR /single_ursim_control/
|
||
|
|
||
|
ARG RELEASE_ID
|
||
|
ENV RELEASE_ID ${RELEASE_ID:-""}
|
||
|
|
||
|
CMD ["python3", "main.py"]
|