mirror of
https://github.com/UGA-Innovation-Factory/UR10-Sentry.git
synced 2026-01-12 12:51:08 +00:00
24 lines
450 B
Plaintext
24 lines
450 B
Plaintext
FROM python:3.12
|
|
|
|
LABEL maintainer="Tomas Arturo Letelier Zamora"
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY requirements.txt ./
|
|
|
|
RUN pip install --no-cache-dir --upgrade pip \
|
|
&& pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY Communication/ ./Communication/
|
|
COPY Robot/ ./Robot/
|
|
COPY UnifiWebsockets/ ./UnifiWebsockets/
|
|
|
|
COPY BBoxProcessor.py .
|
|
COPY URSentry.py .
|
|
COPY dockermain.py .
|
|
|
|
ENV UNIFI_PASSWORD=''
|
|
|
|
EXPOSE 502
|
|
|
|
CMD [ "python", "./dockermain.py" ] |