WhoIsSpyAgentExample / Dockerfile
jiangjunguang1123's picture
Create Dockerfile
3a53125 verified
raw
history blame
320 Bytes
FROM python:3.9
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
RUN pip3 install spy-agent-build-sdk==0.0.16
COPY --chown=user . /app
CMD ["python3", "app.py"]