Dockerfile 504 B

1234567891011121314151617181920212223
  1. # pull official base image
  2. FROM python:3.10.7-slim-buster
  3. # set work directory
  4. WORKDIR /usr/src/app
  5. # set environment variables
  6. ENV PYTHONDONTWRITEBYTECODE 1
  7. ENV PYTHONUNBUFFERED 1
  8. # install system dependencies
  9. RUN apt-get update && apt-get install -y netcat
  10. # install dependencies
  11. RUN pip install --upgrade pip
  12. COPY ./requirements.txt /usr/src/app/requirements.txt
  13. RUN pip install -r requirements.txt
  14. # copy project
  15. COPY . /usr/src/app/
  16. RUN chmod u+x ./entrypoint.sh
  17. ENTRYPOINT ["./entrypoint.sh"]