webdict/Dockerfile

7 lines
No EOL
144 B
Docker

FROM python:3-alpine
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["waitress-serve", "--port=8000", "app.app"]