This repository has been archived on 2024-11-23. You can view files and clone it, but cannot push or open issues or pull requests.
Meme-service/Dockerfile

10 lines
111 B
Docker
Raw Normal View History

2023-02-24 23:28:52 +00:00
FROM python
WORKDIR /usr/src/app
COPY ./src ./
RUN pip install -r requirements.txt
CMD "python" "./app.py"