mirror of
https://github.com/docker/compose.git
synced 2025-10-27 17:23:59 +01:00
Signed-off-by: Christopher Crone <christopher.crone@docker.com> Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
8 lines
180 B
Docker
8 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"]
|