You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
192 B
Docker
6 lines
192 B
Docker
2 years ago
|
FROM waggle/plugin-base:1.1.1-ml
|
||
|
COPY requirements.txt /app/
|
||
|
RUN pip3 install --no-cache-dir --upgrade -r /app/requirements.txt
|
||
|
COPY . /app/
|
||
|
WORKDIR /app
|
||
|
ENTRYPOINT ["python3", "/app/main.py"]
|