mirror of
https://github.com/pyro2927/SouthwestCheckin.git
synced 2026-01-06 17:53:13 +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
|