steamgifts-bot/Dockerfile
mcinj 282402d14f Dockerfile
- Dockerfile that starts the cli.py bot
2022-04-22 13:07:57 -04:00

17 lines
343 B
Docker

FROM python:3.9-alpine
RUN mkdir -p /app
WORKDIR /app
# resolves gcc issue with installing regex dependency
RUN apk add build-base --no-cache
ENV VIRTUAL_ENV=/app/env
RUN python -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY ./src/* /app/
CMD ["python", "cli.py"]