mirror of
https://github.com/docker/compose.git
synced 2026-06-27 03:33:32 +00:00
Signed-off-by: Christopher Crone <christopher.crone@docker.com> Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
7 lines
180 B
Docker
7 lines
180 B
Docker
FROM python:3.7-alpine
|
|
WORKDIR /app
|
|
COPY requirements.txt /app
|
|
RUN pip3 install -r requirements.txt
|
|
COPY . /app
|
|
ENTRYPOINT ["/app/scripts/entrypoint.sh"]
|
|
CMD ["python3", "app.py"]
|