steamgifts-bot/Dockerfile

20 lines
359 B
Text
Raw Normal View History

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/
2022-04-23 21:00:22 +02:00
VOLUME /config
2022-04-23 18:34:04 +02:00
CMD ["python", "run.py"]