16 lines
341 B
Docker
16 lines
341 B
Docker
FROM python:3.7.2-alpine3.8
|
|
|
|
LABEL maintainer="Evan Richardson"
|
|
LABEL version="1.2"
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
ENV PYTHONPATH=/app/src/python
|
|
RUN pip3 install --no-cache-dir --upgrade pip
|
|
RUN pip3 install --no-cache-dir -r requirements.txt
|
|
#RUN rm -rf /var/cache/apk
|
|
|
|
CMD ["/app/src/bin/tHome-eagle.py", "-c", "/app/src/conf"]
|
|
|
|
EXPOSE 22042
|