mirror of
https://github.com/simon987/od-database.git
synced 2025-04-04 06:52:59 +00:00
12 lines
157 B
Docker
12 lines
157 B
Docker
FROM python:3.7
|
|
|
|
WORKDIR /app
|
|
|
|
ADD requirements.txt /app/requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
ENTRYPOINT ["python", "app.py"]
|
|
|
|
COPY . /app
|
|
|