1234567891011121314151617181920212223 |
- # pull official base image
- FROM python:3.10.7-slim-buster
- # set work directory
- WORKDIR /usr/src/app
- # set environment variables
- ENV PYTHONDONTWRITEBYTECODE 1
- ENV PYTHONUNBUFFERED 1
- # install system dependencies
- RUN apt-get update && apt-get install -y netcat
- # install dependencies
- RUN pip install --upgrade pip
- COPY ./requirements.txt /usr/src/app/requirements.txt
- RUN pip install -r requirements.txt
- # copy project
- COPY . /usr/src/app/
- RUN chmod u+x ./entrypoint.sh
- ENTRYPOINT ["./entrypoint.sh"]
|