part_of_speech / Dockerfile
HoneyTian's picture
update
4b9750d
raw
history blame contribute delete
288 Bytes
FROM python:3.10
RUN useradd -m -u 1000 user
USER user
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . /app
RUN bash install.sh --stage 0 --stop_stage 2
CMD ["python3", "main.py"]