6 lines
141 B
Docker
6 lines
141 B
Docker
FROM python
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN pip install -r requirements.txt
|
|
CMD ["waitress-serve", "--listen=0.0.0.0:8080", "app:app"]
|
|
EXPOSE 8080
|