robinroy03's picture
modified dockerfile, kept env of transformers inside main.py -- attempt 1
05411e6
raw
history blame
No virus
1.06 kB
# FROM python
# WORKDIR /code
# COPY ./requirements.txt /code/requirements.txt
# RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# COPY . .
# CMD ["gunicorn", "-w", "1", "main:app"]
# ==============================================================================
# FROM python
# WORKDIR /code
# COPY ./requirements.txt /code/requirements.txt
# RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# RUN useradd -m -u 1000 user
# USER user
# ENV HOME=/home/user \
# PATH=/home/user/.local/bin:$PATH
# WORKDIR $HOME/app
# RUN mkdir $HOME/.cache
# COPY --chown=user . $HOME/app
# CMD ["gunicorn", "-w", "1", "main:app"]
# ==============================================================================
FROM python
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
COPY --chown=user . $HOME/embeddingAPI
WORKDIR $HOME/embeddingAPI
RUN mkdir $HOME/.cache
RUN pip install --no-cache-dir --upgrade -r requirements.txt
CMD ["gunicorn", "-w", "1", "main:app"]