mirror of
https://github.com/pyro2927/SouthwestCheckin.git
synced 2025-12-06 01:13:19 +00:00
6 lines
122 B
Docker
6 lines
122 B
Docker
FROM python:3.6.2
|
|
COPY ./requirements.txt /tmp/
|
|
COPY ./checkin.py /tmp/
|
|
WORKDIR /tmp/
|
|
RUN pip install -r requirements.txt
|