All checks were successful
continuous-integration/drone/push Build is passing
Install deps Use a user
14 lines
227 B
Docker
14 lines
227 B
Docker
FROM python:3.7
|
|
|
|
RUN useradd --create-home appuser
|
|
|
|
COPY requirements.txt /home/appuser
|
|
RUN pip install -r /home/appuser/requirements.txt
|
|
|
|
|
|
WORKDIR /home/appuser
|
|
USER appuser
|
|
|
|
COPY bibcheck.py /
|
|
CMD ["python", "./bibcheck.py"]
|