Files
ShortMe-URL-Shortener/Dockerfile
2021-03-24 15:13:32 +02:00

12 lines
141 B
Docker

FROM python:3
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "run.py"]