nmt / Dockerfile
mvanyan's picture
Update Dockerfile
fd41d25
raw
history blame
No virus
363 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN touch /.aim_profile
RUN chown 1000:1000 /code /.aim_profile
RUN aim telemetry off
COPY nmt_logs.tar.gz .
RUN tar -xzf nmt_logs.tar.gz
CMD ["aim", "up", "--host", "0.0.0.0", "--port", "7860", "--workers", "2"]