WMGZON/dockerfile

7 lines
182 B
Plaintext
Raw Normal View History

FROM python:latest
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
COPY . /app
RUN chmod +x scripts/run.sh
CMD ["sh", "scripts/run.sh"]