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
2023-02-24 18:28:52 -05:00

10 lines
111 B
Docker

FROM python
WORKDIR /usr/src/app
COPY ./src ./
RUN pip install -r requirements.txt
CMD "python" "./app.py"