about summary refs log tree commit diff
path: root/compose/app/Dockerfile
blob: 8db20e028ccacd0f14af6b641d76fae053c49ea9 (plain) (blame)
1
2
3
4
5
FROM python:3.8-alpine
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
CMD ["python", "app.py"]