You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM tiangolo/uwsgi-nginx-flask:python3.8-alpine
|
|
RUN apk --update add bash nano
|
|
ENV STATIC_URL /static
|
|
ENV STATIC_PATH /var/www/app/static
|
|
COPY ./requirements.txt /var/www/requirements.txt
|
|
RUN pip install -r /var/www/requirements.txt
|
|
|