drop-in-url-previews/Dockerfile

12 lines
196 B
Docker
Raw Normal View History

2024-02-09 22:37:12 +00:00
FROM python:alpine
WORKDIR /app
COPY requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
RUN rm /tmp/requirements.txt
2024-02-09 22:37:12 +00:00
COPY ./src/ /app/
2024-02-09 22:37:12 +00:00
CMD ["python", "server.py"]