All checks were successful
continuous-integration/drone/push Build is passing
6 lines
185 B
Docker
6 lines
185 B
Docker
FROM python:3.11.0-alpine3.16
|
|
COPY ./app /app
|
|
WORKDIR /app
|
|
RUN pip3 install -r requirements.txt
|
|
ENV FLASK_APP=app.py
|
|
CMD ["python3", "-m", "flask", "run", "--host=0.0.0.0", "--port=80"] |