mirror of
https://github.com/UGA-Innovation-Factory/UR10-Sentry.git
synced 2025-12-19 00:56:11 +00:00
22 lines
426 B
Plaintext
22 lines
426 B
Plaintext
FROM python:3.12
|
|
|
|
LABEL maintainer="Tomas Letelier"
|
|
|
|
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 = ''
|
|
|
|
CMD [ "python", "./dockermain.py" ] |